30 lines
1.1 KiB
Text
30 lines
1.1 KiB
Text
%td.closed
|
|
= link_to order_article.article.name, '#'
|
|
/"Element.toggle('group_order_articles_#{order_article.id}'); |
|
|
/Element.toggleClassName(this.up('td'), 'open')" |
|
|
%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"} !
|
|
%td= order_article.price.unit_quantity.to_s + ' * ' + order_article.article.unit.to_s
|
|
%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 icon(:edit), '#'
|
|
/:url => {:action => 'edit_order_article', :id => order_article} |
|
|
%td
|
|
= link_to icon(:delete), '#'
|
|
/:confirm => 'Bist du sicher?'
|
|
/:url => {:action => 'destroy_order_article', :id => order_article},
|
|
/:method => :post
|