add property title

This commit is contained in:
chiu 2020-05-28 17:30:03 +08:00
parent a8952495f4
commit 7e3141d4f0
2 changed files with 4 additions and 1 deletions

View File

@ -15,7 +15,7 @@ class Admin::PropertyHiresController < OrbitAdminController
end
def my_bookings
@table_fields = ["property_hire.hiring_person_name", "property_hire.reason_for_hire", "property_hire.hiring_person_number", "property_hire.period", "property_hire.passed", :actions]
@table_fields = ["property_hire.title","property_hire.hiring_person_name", "property_hire.reason_for_hire", "property_hire.hiring_person_number", "property_hire.period", "property_hire.passed", :actions]
@bookings = PHire.where(:hiring_person_id => current_user.member_profile.id.to_s).desc(:created_at).page(params[:page]).per(10)
end

View File

@ -10,6 +10,9 @@
<tbody>
<% @bookings.each do |p_hire| %>
<tr>
<td>
<%= p_hire.property.title rescue nil %>
</td>
<td>
<%= p_hire.hirer_name %>
</td>