foodsoft/app/views/finance/invoices/_form.html.haml

21 lines
686 B
Plaintext
Raw Normal View History

2012-04-20 18:33:47 +02:00
= simple_form_for([:finance, @invoice]) do |f|
2009-01-18 17:42:51 +01:00
= f.hidden_field :delivery_id
= f.hidden_field :order_id
2009-01-18 17:42:51 +01:00
- if @invoice.delivery
%p= t('.linked', what_link: link_to(t('.delivery'), [@invoice.supplier,@invoice.delivery])).html_safe
- if @invoice.order
%p= t('.linked', what_link: link_to(t('.order'), @invoice.order)).html_safe
2012-04-20 18:33:47 +02:00
= f.association :supplier, hint: false
= f.input :number
= f.input :date, as: :date_picker
= f.input :paid_on, as: :date_picker
2012-04-20 18:33:47 +02:00
= f.input :amount, as: :string
= f.input :deposit, as: :string
= f.input :deposit_credit, as: :string
= f.input :note
.form-actions
= f.submit class: 'btn'
= link_to t('.or_cancel'), :back