<% email_set = Property.where(id: @data['property_id']).first.hire_email_sets.select{|v| v.field_name == 'p_hire'} %> <% if email_set.length != 0 %> <% if !(email_set[0].content.nil?) %> <%= email_set[0].content[@data['locale']].html_safe %> <% end %> <% else %> <%= t('property_hire.email_p_hire_content') %> <% end %>
<% I18n.with_locale(@data['locale']) do %>

<%= Property.where(id: @data['property_id']).first.title rescue nil %>

<% if !@data['hire_id'].nil? %> <% hire = PHire.where(id: @data['hire_id']).first %> <% ['hiring_person_name','hiring_person_email','start_time','end_time','recurring','recurring_interval','recurring_end_date','passed','reason_for_hire','note_for_hire'].each do |k| %> <% v = hire.send(k) %> <% if !v.nil? && !(k.include?('recurring') && hire.recurring != true)%> <% end %> <% end %>
<%= t("property_hire.#{k}") %>:  <% if ['start_time','end_time','recurring','recurring_interval','recurring_end_date','passed'].exclude?(k) %> <%= v.to_s %> <% elsif ['start_time','end_time','recurring_end_date'].include?(k) %> <%= v.strftime('%Y/%m/%d %H:%M') rescue nil %> <% elsif k == 'recurring_interval' %> <%= t("property_hire.recurring_interval_types.#{v}") %> <% elsif 'recurring' == k %> <%= v ? t('property_hire.yes') : t('property_hire.no') %> <% else %> <%= v ? t('property_hire.yes') : t('property_hire.wait_for_permit') %> <% end %>
<% end %> <% end %>