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

31 lines
1.1 KiB
Plaintext
Raw Normal View History

%td.closed
2012-05-12 11:18:46 +02:00
= 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
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 => "")
%td= order_article.price.tax
%td= order_article.price.deposit
%td
2012-05-12 11:18:46 +02:00
= link_to icon(:edit), '#'
/:url => {:action => 'edit_order_article', :id => order_article} |
%td
2012-05-12 11:18:46 +02:00
= link_to icon(:delete), '#'
/:confirm => 'Bist du sicher?'
/:url => {:action => 'destroy_order_article', :id => order_article},
/:method => :post