foodsoft/app/views/deliveries/_stock_change.html.haml

7 lines
302 B
Plaintext
Raw Normal View History

%p
= fields_for "delivery[new_stock_changes][]", stock_change do |form|
= form.select :stock_article_id, stock_articles_for_select(supplier)
Menge
= form.text_field :quantity, :size => 5, :autocomplete => 'off'
2013-04-10 17:02:16 +02:00
= link_to t('.remove_article'), "#", :class => 'remove_new_stock_change'