2011-05-19 22:35:13 +02:00
|
|
|
= simple_form_for [@supplier, @article], :validate => true, :remote => true do |f|
|
2012-10-19 01:12:47 +02:00
|
|
|
= f.hidden_field :shared_updated_on
|
|
|
|
= f.hidden_field :supplier_id
|
|
|
|
.modal-header
|
2013-04-12 15:45:24 +02:00
|
|
|
= link_to t('ui.marks.close').html_safe, '#', class: 'close', data: {dismiss: 'modal'}
|
2013-03-09 00:40:07 +01:00
|
|
|
%h3= t '.title'
|
2012-10-19 01:12:47 +02:00
|
|
|
.modal-body
|
|
|
|
= f.input :availability
|
|
|
|
= f.input :name
|
|
|
|
= f.input :origin
|
|
|
|
= f.input :manufacturer
|
|
|
|
= f.input :unit
|
|
|
|
= f.input :note
|
|
|
|
= f.association :article_category
|
2009-01-16 16:19:26 +01:00
|
|
|
|
2012-10-19 01:12:47 +02:00
|
|
|
= f.input :price
|
|
|
|
= f.input :unit_quantity
|
|
|
|
= f.input :order_number
|
2013-06-06 17:58:02 +02:00
|
|
|
= f.input :tax, :wrapper => :append do
|
|
|
|
= f.input_field :tax
|
|
|
|
%span.add-on %
|
2012-10-19 01:12:47 +02:00
|
|
|
= f.input :deposit
|
|
|
|
.modal-footer
|
2013-04-12 15:45:24 +02:00
|
|
|
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
|
2012-10-19 01:12:47 +02:00
|
|
|
= f.submit class: 'btn btn-primary'
|
2009-01-16 16:19:26 +01:00
|
|
|
|