[#4183] Format the payment terms using the translated string.

This commit is contained in:
Eric Davis
2010-07-13 11:18:26 -07:00
parent 96d75a149c
commit af99dc4042
2 changed files with 6 additions and 1 deletions

View File

@@ -58,4 +58,9 @@ module ContractsHelper
def format_hourly_rate(decimal)
number_to_currency(decimal) + "/hr" if decimal
end
def format_payment_terms(value)
return '' if value.blank?
return l(Contract::PaymentTerms[value.to_sym])
end
end

View File

@@ -16,7 +16,7 @@
<%= show_field(resource, :client_point_of_contact, :format => :textilizable, :raw => true, :html_options => {:class => 'contract-client-point-of-contact'}) %>
<%= show_field(resource, :executed, :html_options => {:class => 'contract-executed'}) %>
<%= show_field(resource, :discount_note, :format => :textilizable, :raw => true, :html_options => {:class => 'contract-discount-note'}) %>
<%= show_field(resource, :payment_terms, :html_options => {:class => 'contract-payment-terms'}) %>
<%= show_field(resource, :payment_terms, :format => :format_payment_terms, :html_options => {:class => 'contract-payment-terms'}) %>
<%= show_field(resource, :client_ap_contact_information, :format => :textilizable, :raw => true, :html_options => {:class => 'contract-client-ap-contact-information'}) %>
<%= show_field(resource, :po_number, :html_options => {:class => 'contract-po-number'}) %>
<%= show_field(resource, :details, :format => :textilizable, :raw => true, :html_options => {:class => 'contract-details'}) %>