33 lines
1.4 KiB
Text
33 lines
1.4 KiB
Text
= simple_form_for([:finance, @invoice]) do |f|
|
|
= f.association :deliveries, multiple: true, as: :hidden
|
|
= f.association :orders, multiple: true, as: :hidden
|
|
|
|
- if @invoice.deliveries.first
|
|
%p= t('finance.invoices.linked', what_link: link_to(t('finance.invoices.linked_delivery'), [@invoice.supplier,@invoice.deliveries.first])).html_safe
|
|
- if @invoice.orders.first
|
|
%p= t('finance.invoices.linked', what_link: link_to(t('finance.invoices.linked_order'), new_finance_order_path(order_id: @invoice.orders.first.id))).html_safe
|
|
|
|
- if @invoice.created_at
|
|
.fold-line
|
|
.control-group
|
|
%label.control-label{for: 'created_at'}
|
|
= Invoice.human_attribute_name(:created_at)
|
|
.controls.control-text#article_fc_price
|
|
= format_date @invoice.created_at
|
|
.control-group
|
|
%label.control-label{for: 'created_by'}
|
|
= Invoice.human_attribute_name(:created_by)
|
|
.controls.control-text#article_fc_price
|
|
= show_user @invoice.created_by
|
|
= f.association :supplier, hint: false
|
|
= f.input :number
|
|
= f.input :date, as: :date_picker
|
|
- if current_user.role_finance?
|
|
= f.input :paid_on, as: :date_picker
|
|
= 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('ui.or_cancel'), :back
|