2012-10-15 21:19:17 +02:00
|
|
|
%table.table.table-hover
|
|
|
|
%thead
|
2009-01-29 01:57:51 +01:00
|
|
|
%tr
|
2013-02-08 19:16:06 +01:00
|
|
|
%th{:style => "width:40%"}= t '.name'
|
2009-01-29 01:57:51 +01:00
|
|
|
%th
|
2013-02-08 19:16:06 +01:00
|
|
|
%acronym{:title => t('.units_desc')}= t '.units'
|
2009-01-29 01:57:51 +01:00
|
|
|
%th
|
2013-02-08 19:16:06 +01:00
|
|
|
%acronym{:title => t('.fc_price_desc')}= t '.fc_price'
|
2009-01-29 01:57:51 +01:00
|
|
|
%th
|
2013-02-08 19:16:06 +01:00
|
|
|
%acronym{:title => t('.unit_quantity_desc')}= t '.unit_quantity'
|
|
|
|
%th= t '.unit'
|
|
|
|
%th= t '.price'
|
2009-01-29 01:57:51 +01:00
|
|
|
|
2012-10-15 21:19:17 +02:00
|
|
|
- for group_order in order.group_orders.all
|
2009-01-29 01:57:51 +01:00
|
|
|
%thead
|
|
|
|
%tr
|
2012-10-15 21:19:17 +02:00
|
|
|
%th{:colspan => "6"}
|
|
|
|
%h4= group_order.ordergroup.name
|
2009-01-29 01:57:51 +01:00
|
|
|
%tbody
|
|
|
|
- total = 0
|
2009-02-03 21:14:48 +01:00
|
|
|
- for goa in group_order.group_order_articles.ordered.all(:include => :order_article)
|
2009-01-29 01:57:51 +01:00
|
|
|
- fc_price = goa.order_article.price.fc_price
|
2009-02-04 16:41:01 +01:00
|
|
|
- subTotal = fc_price * goa.result
|
2009-01-29 01:57:51 +01:00
|
|
|
- total += subTotal
|
|
|
|
%tr{:class => cycle('even', 'odd', :name => 'articles')}
|
|
|
|
%td{:style => "width:40%"}=h goa.order_article.article.name
|
2009-02-04 16:41:01 +01:00
|
|
|
%td= goa.result
|
2009-01-29 01:57:51 +01:00
|
|
|
%td= number_to_currency(fc_price)
|
|
|
|
%td= goa.order_article.price.unit_quantity
|
|
|
|
%td= goa.order_article.article.unit
|
|
|
|
%td= number_to_currency(subTotal)
|
|
|
|
|
|
|
|
%tr{:class => cycle('even', 'odd', :name => 'articles')}
|
|
|
|
%th{:colspan => "5"} Summe
|
|
|
|
%th= number_to_currency(total)
|
2012-10-15 21:19:17 +02:00
|
|
|
%tr
|
|
|
|
%th(colspan="6")
|
2013-02-08 19:16:06 +01:00
|
|
|
- reset_cycle("articles")
|