2012-10-29 18:28:17 +01:00
|
|
|
= simple_form_for stock_article, :validate => true do |f|
|
2011-05-27 14:09:01 +02:00
|
|
|
= f.association :supplier
|
|
|
|
= f.input :name
|
|
|
|
= f.input :unit
|
|
|
|
= f.input :note
|
|
|
|
|
2009-02-11 18:09:04 +01:00
|
|
|
- if stock_article.new_record?
|
2011-05-27 14:09:01 +02:00
|
|
|
= f.input :price
|
|
|
|
= f.input :tax
|
|
|
|
= f.input :deposit
|
2009-02-11 18:09:04 +01:00
|
|
|
- else
|
2013-02-11 11:19:26 +01:00
|
|
|
= f.input :price, :input_html => {:disabled => 'disabled'}, :hint => t('.form.price_hint')
|
2011-05-27 14:09:01 +02:00
|
|
|
= f.association :article_category
|
2012-10-29 18:28:17 +01:00
|
|
|
.form-actions
|
|
|
|
= f.submit class: 'btn'
|
2013-02-11 11:19:26 +01:00
|
|
|
= link_to t('.cancel'), stock_articles_path
|