27 lines
1.2 KiB
Text
27 lines
1.2 KiB
Text
%td.closed
|
|
= link_to order_article.article.name, '#', 'data-toggle-this' => "#group_order_articles_#{order_article.id}"
|
|
%td= order_article.article.order_number
|
|
%td{title: units_history_line(order_article, :plain => true)}
|
|
= order_article.units
|
|
= pkg_helper order_article.article_price
|
|
- if s=order_article.ordered_quantities_different_from_group_orders?
|
|
%span{:style => "color:red;font-weight: bold"}= s
|
|
%td #{order_article.article.unit}
|
|
%td
|
|
= number_to_currency(order_article.price.price, :unit => "")
|
|
:plain
|
|
/
|
|
= number_to_currency(order_article.total_price, :unit => "")
|
|
%td
|
|
= number_to_currency(order_article.price.gross_price, :unit => "")
|
|
:plain
|
|
/
|
|
= number_to_currency(order_article.total_gross_price, :unit => "")
|
|
%td #{order_article.price.tax}%
|
|
%td= order_article.price.deposit
|
|
%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?
|