4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# File 'app/helpers/bookingsync_portal/admin/application_helper.rb', line 4
def rental_details(rental)
scope = 'bookingsync_portal.admin.rentals.rental'
details = Array.new
if rental.sleeps.to_i > 0
if rental.sleeps_max.to_i > 0 && rental.sleeps_max.to_i > rental.sleeps.to_i
details << t(:sleeps_html, scope: scope,
count: "#{rental.sleeps.to_i}-#{rental.sleeps_max.to_i}")
else
details << t(:sleeps_html, scope: scope,
count: rental.sleeps.to_i)
end
end
if rental.bedrooms_count.to_i > 0
details << t(:bedrooms_html, scope: scope,
count: rental.bedrooms_count.to_i)
end
if rental.bathrooms_count.to_i > 0
details << t(:bathrooms_html, scope: scope,
count: rental.bathrooms_count.to_i)
end
if rental.surface.to_i > 0
details << t(:surface_html, scope: scope,
count: rental.surface.to_i, unit: rental.surface_unit_symbol)
end
safe_join(details, ', ')
end
|