2009-01-29 21:28:22 +01:00
|
|
|
%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}"
|
2009-01-29 21:28:22 +01:00
|
|
|
%td= order_article.article.order_number
|
2009-02-04 16:41:01 +01:00
|
|
|
%td
|
|
|
|
= order_article.units_to_order
|
|
|
|
- unless order_article.ordered_quantities_equal_to_group_orders?
|
|
|
|
%span{:style => "color:red;font-weight: bold"} !
|
2009-01-29 21:28:22 +01:00
|
|
|
%td= order_article.price.unit_quantity.to_s + ' * ' + order_article.article.unit.to_s
|
2009-03-22 11:58:01 +01:00
|
|
|
%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 => "")
|
2009-03-22 11:58:01 +01:00
|
|
|
%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 => "")
|
2009-01-29 21:28:22 +01:00
|
|
|
%td= order_article.price.tax
|
|
|
|
%td= order_article.price.deposit
|
|
|
|
%td
|
2012-11-10 16:44:05 +01:00
|
|
|
= link_to "Bearbeiten", edit_finance_order_order_article_path(order_article.order, order_article), remote: true,
|
|
|
|
class: 'btn btn-mini'
|
2009-01-29 21:28:22 +01:00
|
|
|
%td
|
2012-11-10 16:44:05 +01:00
|
|
|
= link_to "Löschen", finance_order_order_article_path(order_article.order, order_article), method: :delete,
|
|
|
|
remote: true, confirm: 'Bist du sicher?', class: 'btn btn-danger btn-mini'
|