30 lines
1.2 KiB
Text
30 lines
1.2 KiB
Text
= simple_form_for [@order, @order_article], remote: true do |form|
|
|
.modal-header
|
|
= link_to t('ui.marks.close').html_safe, '#', class: 'close', data: {dismiss: 'modal'}
|
|
%h3= t '.title'
|
|
.modal-body
|
|
.fold-line
|
|
= form.input :units_to_order, label: 'Amount ordered', hint: '', input_html: {class: 'input-nano'}
|
|
-#= form.input :units_billed, label: 'invoice', input_html: {class: 'input-nano'}
|
|
= form.input :units_received, label: 'received', input_html: {class: 'input-nano'}
|
|
%p.help-block= t 'simple_form.hints.order_article.units_to_order'
|
|
|
|
.foo{style: 'clear:both'}
|
|
|
|
= simple_fields_for :article, @order_article.article do |f|
|
|
= f.input :name
|
|
= f.input :order_number
|
|
= f.input :unit
|
|
|
|
- if @order_article.article.is_a?(StockArticle)
|
|
%div.alert= t '.stock_alert'
|
|
- 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
|
|
.modal-footer
|
|
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
|
|
= form.submit class: 'btn btn-primary'
|