14 lines
469 B
Text
14 lines
469 B
Text
= simple_form_for stock_article, url: add_stock_article_supplier_deliveries_path(@supplier), remote: true,
|
|
validate: true do |f|
|
|
= f.hidden_field :supplier_id
|
|
= f.input :name
|
|
= f.input :unit
|
|
= f.input :note
|
|
= f.input :price
|
|
= f.input :tax, :wrapper => :append do
|
|
= f.input_field :tax
|
|
%span.add-on %
|
|
-# untested, because this view is currently not included (?)
|
|
= f.input :deposit
|
|
= f.association :article_category
|
|
= f.submit class: 'btn'
|