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

28 lines
1.3 KiB
Plaintext
Raw Normal View History

%td.closed.name
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
2017-05-05 21:03:03 +02:00
%td{title: units_history_line(order_article, :plain => true)}
2013-12-18 22:08:02 +01:00
= order_article.units
2014-01-03 12:42:36 +01:00
= pkg_helper order_article.article_price
- if s=order_article.ordered_quantities_different_from_group_orders?
%span{:style => "color:red;font-weight: bold"}= s
2014-01-03 12:42:36 +01:00
%td #{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 => "")
2020-03-23 12:53:21 +01:00
%td= number_to_percentage(order_article.price.tax) unless order_article.price.tax.zero?
%td= number_to_currency(order_article.price.deposit, :unit => "") unless order_article.price.deposit.zero?
%td
= link_to t('ui.edit'), edit_order_order_article_path(order_article.order, order_article), remote: true,
class: 'btn btn-mini' unless order_article.order.closed?
%td
= link_to t('ui.delete'), order_order_article_path(order_article.order, order_article), method: :delete,
remote: true, data: {confirm: t('.confirm')}, class: 'btn btn-danger btn-mini' unless order_article.order.closed?