Fixed wrong articles total in group_order#show.

This commit is contained in:
Benjamin Meichsner 2013-04-08 13:39:02 +02:00
parent 03ea8e194e
commit 220343128c

View file

@ -47,7 +47,6 @@
Erhalten Erhalten
%th Gesamtpreis %th Gesamtpreis
%tbody %tbody
- total = 0 #set counter for order-sum
- for category_name, order_articles in @order.articles_grouped_by_category - for category_name, order_articles in @order.articles_grouped_by_category
%tr.article-category %tr.article-category
%td %td
@ -74,7 +73,7 @@
%td{colspan: "6"}=h oa.article.note %td{colspan: "6"}=h oa.article.note
%tr{class: cycle('even', 'odd', name: 'articles')} %tr{class: cycle('even', 'odd', name: 'articles')}
%th{colspan: "5"} Summe %th{colspan: "5"} Summe
%th= number_to_currency(total) %th= number_to_currency(@group_order.price)
%br/ %br/
= link_to_top = link_to_top
- else - else