introduce new layout in balancing article screen as well

This commit is contained in:
wvengen 2013-12-23 16:11:14 +01:00
parent 3f497e9274
commit 699be6a6d9
4 changed files with 51 additions and 45 deletions

View file

@ -7,18 +7,16 @@
= 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
- 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}
= form.input :update_current_price, as: :boolean
= f.input :order_number
.modal-footer
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
= form.submit class: 'btn btn-primary'