2012-10-29 18:28:17 +01:00
|
|
|
- simple_form_for stock_article, url: add_stock_article_stock_takings_path, remote: true do |f|
|
2011-05-27 14:09:01 +02:00
|
|
|
= f.association :supplier
|
|
|
|
= f.input :name
|
|
|
|
= f.input :unit
|
|
|
|
= f.input :note
|
|
|
|
= f.input :price
|
2013-06-06 17:58:02 +02:00
|
|
|
= f.input :tax, :wrapper => :append do
|
|
|
|
= f.input_field :tax
|
|
|
|
%span.add-on %
|
|
|
|
-# untested, because this view is currently not included (?)
|
2011-05-27 14:09:01 +02:00
|
|
|
= f.input :deposit
|
|
|
|
= f.association :article_category
|
2013-06-06 17:58:02 +02:00
|
|
|
= f.submit
|