2012-11-10 16:44:05 +01:00
|
|
|
= simple_form_for [:finance, @order, @order_article], remote: true do |form|
|
|
|
|
.modal-header
|
2013-03-08 23:35:50 +01:00
|
|
|
= button_tag t('ui.marks.close'), class: 'close', data: {dismiss: 'modal'}
|
|
|
|
%h3= t '.title'
|
2012-11-10 16:44:05 +01:00
|
|
|
.modal-body
|
|
|
|
= form.input :units_to_order
|
2012-06-21 17:19:00 +02:00
|
|
|
|
2013-03-17 18:33:04 +01:00
|
|
|
= simple_fields_for :article, @order_article.article do |f|
|
2012-11-10 16:44:05 +01:00
|
|
|
= f.input :name
|
|
|
|
= f.input :order_number
|
|
|
|
= f.input :unit
|
2012-12-11 10:32:59 +01:00
|
|
|
|
2013-03-17 18:33:04 +01:00
|
|
|
- if @order_article.article.is_a?(StockArticle)
|
|
|
|
%div.alert Preise von Lagerartikeln können nicht geändert werden!
|
|
|
|
- else
|
|
|
|
= simple_fields_for :article_price, @order_article.article_price do |f|
|
|
|
|
= f.input :unit_quantity
|
|
|
|
= f.input :price
|
|
|
|
= f.input :tax
|
|
|
|
= f.input :deposit
|
|
|
|
= form.input :update_current_price, as: :boolean
|
2012-11-10 16:44:05 +01:00
|
|
|
.modal-footer
|
2013-03-08 23:35:50 +01:00
|
|
|
= button_tag t('ui.close'), class: 'btn', data: {dismiss: 'modal'}
|
|
|
|
= form.submit class: 'btn btn-primary'
|