19 lines
810 B
Text
19 lines
810 B
Text
|
%td.closed
|
||
|
= link_to_function 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
|
||
|
%td= order_article.price.unit_quantity.to_s + ' * ' + order_article.article.unit.to_s
|
||
|
%td= number_to_currency(order_article.price.price, :unit => "")
|
||
|
%td= number_to_currency(order_article.price.fc_price, :unit => "")
|
||
|
%td= order_article.price.tax
|
||
|
%td= order_article.price.deposit
|
||
|
%td
|
||
|
//= remote_link_to icon(:edit), |
|
||
|
//:url => {:action => 'edit_order_article', :id => order_article} |
|
||
|
%td
|
||
|
= remote_link_to icon(:delete), :confirm => 'Bist du sicher?', |
|
||
|
:url => {:action => 'destroy_order_article', :id => order_article}, |
|
||
|
:method => :post |
|