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
|
2015-04-10 18:58:51 +02:00
|
|
|
= close_button :modal
|
2013-12-06 12:34:14 +01:00
|
|
|
%h3= @article.new_record? ? t('.title_new') : t('.title_edit')
|
2012-10-19 01:12:47 +02:00
|
|
|
.modal-body
|
2013-12-06 14:33:51 +01:00
|
|
|
= f.input :availability
|
2012-10-19 01:12:47 +02:00
|
|
|
= f.input :name
|
2013-12-23 16:11:14 +01:00
|
|
|
|
|
|
|
= render partial: 'shared/article_fields_units', locals: {f: f}
|
2013-11-20 23:40:38 +01:00
|
|
|
|
2012-10-19 01:12:47 +02:00
|
|
|
= f.input :note
|
|
|
|
= f.association :article_category
|
2013-11-20 23:40:38 +01:00
|
|
|
/ TODO labels
|
|
|
|
|
2013-12-23 16:11:14 +01:00
|
|
|
= render partial: 'shared/article_fields_price', locals: {f: f}
|
2009-01-16 16:19:26 +01:00
|
|
|
|
2013-12-06 14:33:51 +01:00
|
|
|
= f.input :origin
|
|
|
|
= f.input :manufacturer
|
2012-10-19 01:12:47 +02:00
|
|
|
= f.input :order_number
|
|
|
|
.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'
|