foodsoft/app/views/finance/balancing/_order_article.html.haml

27 lines
1.1 KiB
Plaintext
Raw Normal View History

%td.closed
2012-06-21 17:19:00 +02:00
= link_to order_article.article.name, '#', 'data-toggle-this' => "#group_order_articles_#{order_article.id}"
%td= order_article.article.order_number
%td
= order_article.units_to_order
- unless order_article.ordered_quantities_equal_to_group_orders?
%span{:style => "color:red;font-weight: bold"} !
2013-12-12 00:13:19 +01:00
%td #{order_article.price.unit_quantity} × #{order_article.article.unit}
%td
2009-08-06 16:14:36 +02:00
= number_to_currency(order_article.price.price, :unit => "")
:plain
/
= number_to_currency(order_article.total_price, :unit => "")
%td
2009-08-06 16:14:36 +02:00
= number_to_currency(order_article.price.gross_price, :unit => "")
:plain
/
= number_to_currency(order_article.total_gross_price, :unit => "")
2013-12-12 00:13:19 +01:00
%td #{order_article.price.tax}%
%td= order_article.price.deposit
%td
= link_to t('ui.edit'), edit_finance_order_order_article_path(order_article.order, order_article), remote: true,
class: 'btn btn-mini'
%td
= link_to t('ui.delete'), finance_order_order_article_path(order_article.order, order_article), method: :delete,
remote: true, confirm: t('.confirm'), class: 'btn btn-danger btn-mini'