2013-12-31 11:41:14 +01:00
|
|
|
= simple_form_for [@order, @order_article], remote: true do |form|
|
2012-11-10 16:44:05 +01:00
|
|
|
.modal-header
|
2015-04-10 18:58:51 +02:00
|
|
|
= close_button :modal
|
2013-03-08 23:35:50 +01:00
|
|
|
%h3= t '.title'
|
2012-11-10 16:44:05 +01:00
|
|
|
.modal-body
|
2014-01-04 20:35:31 +01:00
|
|
|
- if params[:without_units]
|
|
|
|
= hidden_field_tag :without_units, true
|
|
|
|
- else
|
2014-01-03 13:54:02 +01:00
|
|
|
.fold-line
|
2014-01-08 00:06:25 +01:00
|
|
|
= form.input :units_to_order, hint: '', input_html: {class: 'input-nano'}
|
2014-01-03 13:54:02 +01:00
|
|
|
-#= form.input :units_billed, label: 'invoice', input_html: {class: 'input-nano'}
|
2014-01-08 12:52:29 +01:00
|
|
|
= form.input :units_received, input_html: {class: 'input-nano'},
|
|
|
|
label: t('activerecord.attributes.order_article.units_received_short')
|
2014-01-03 13:54:02 +01:00
|
|
|
%p.help-block= t 'simple_form.hints.order_article.units_to_order'
|
2013-12-23 15:25:45 +01:00
|
|
|
|
2014-01-03 13:54:02 +01:00
|
|
|
.foo{style: 'clear:both'}
|
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
|
2012-12-11 10:32:59 +01:00
|
|
|
|
2013-12-23 16:11:14 +01:00
|
|
|
- if @order_article.article.is_a?(StockArticle)
|
|
|
|
%div.alert= t '.stock_alert'
|
|
|
|
- else
|
|
|
|
= simple_fields_for :article_price, @order_article.article_price do |fprice|
|
|
|
|
= render partial: 'shared/article_fields_units', locals: {f_unit: f, f_uq: fprice}
|
|
|
|
= render partial: 'shared/article_fields_price', locals: {f: fprice}
|
|
|
|
|
2014-01-04 21:35:19 +01:00
|
|
|
= form.input :update_global_price, as: :boolean
|
2013-12-23 16:11:14 +01:00
|
|
|
= f.input :order_number
|
2012-11-10 16:44:05 +01:00
|
|
|
.modal-footer
|
2013-04-12 15:45:24 +02:00
|
|
|
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
|
2013-03-08 23:35:50 +01:00
|
|
|
= form.submit class: 'btn btn-primary'
|