Correct 'brutto'-price to be price.gross not fc_price.
* We want to be more consistent in the use of diffrent price types: * netto, brutto, fc_price Signed-off-by: bennibu <benni@dresdener27.de>
This commit is contained in:
parent
39fdda4019
commit
f7f13ee7a6
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
|||
%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 => "")
|
||||
%td= number_to_currency(order_article.price.fc_price, :unit => "")
|
||||
%td= number_to_currency(order_article.price.gross_price, :unit => "")
|
||||
%td= order_article.price.tax
|
||||
%td= order_article.price.deposit
|
||||
%td
|
||||
|
|
Loading…
Reference in a new issue