foodsoft/app/views/finance/balancing/_summary.haml

32 lines
975 B
Plaintext
Raw Normal View History

%b=h order.name
%br/
2013-02-10 09:05:20 +01:00
= t('.duration', {starts: format_date(order.starts), ends: format_date(order.ends)})
2009-01-06 11:49:19 +01:00
%p
%table
%tr
2013-02-10 09:05:20 +01:00
%td= t('.net_amount')
%td.numeric= number_to_currency(order.sum(:net))
%tr
2013-02-10 09:05:20 +01:00
%td= t('.gross_amount')
%td.numeric= number_to_currency(order.sum(:gross))
%tr
2013-02-10 09:05:20 +01:00
%td= t('.fc_amount')
%td.numeric= number_to_currency(order.sum(:fc))
%tr
2013-02-10 09:05:20 +01:00
%td= t('.groups_amount')
%td.numeric= number_to_currency(order.sum(:groups))
%tr
%td
2013-02-10 09:05:20 +01:00
= t('.fc_profit')
%small= t('.without_extra_charge')
%td.numeric= number_to_currency(order.profit(:without_markup => true))
%tr
%td
2013-02-10 09:05:20 +01:00
= t('.fc_profit')
%small= t('.with_extra_charge')
%td#order_profit.numeric= number_to_currency(order.profit)
#summaryChangedWarning.alert(style="display:none;")
%strong= t '.changed'
%br/
= link_to t('.reload'), update_summary_finance_order_path(order), remote: true