2012-10-06 17:14:57 +02:00
|
|
|
%section
|
2013-02-08 19:16:06 +01:00
|
|
|
%h2= t '.title'
|
2012-09-29 17:52:25 +02:00
|
|
|
- if ordergroup.not_enough_apples?
|
2013-02-08 19:16:06 +01:00
|
|
|
.alert
|
2013-10-17 16:35:50 +02:00
|
|
|
= t '.not_enough_apples'
|
2009-01-29 01:57:51 +01:00
|
|
|
- unless Order.open.empty?
|
2012-10-06 17:14:57 +02:00
|
|
|
%table.table.table-striped
|
2009-01-29 01:57:51 +01:00
|
|
|
%thead
|
|
|
|
%tr
|
2013-11-23 17:28:21 +01:00
|
|
|
%th= heading_helper Order, :name
|
|
|
|
%th= heading_helper Order, :ends
|
2013-02-08 19:16:06 +01:00
|
|
|
%th= t '.who_ordered'
|
2013-11-23 17:28:21 +01:00
|
|
|
%th= heading_helper GroupOrder, :price
|
2009-01-29 01:57:51 +01:00
|
|
|
%tbody
|
|
|
|
- total = 0
|
|
|
|
- Order.open.each do |order|
|
2012-10-06 17:14:57 +02:00
|
|
|
%tr
|
2011-06-19 15:30:33 +02:00
|
|
|
%td= link_to_ordering(order)
|
2012-10-15 21:19:17 +02:00
|
|
|
%td= format_time(order.ends) unless order.ends.nil?
|
2011-06-13 15:26:06 +02:00
|
|
|
- if group_order = order.group_order(ordergroup)
|
2009-01-29 01:57:51 +01:00
|
|
|
- total += group_order.price
|
2013-09-20 22:40:13 +02:00
|
|
|
%td= "#{show_user group_order.updated_by} (#{format_time(group_order.updated_on)})"
|
2012-10-15 21:19:17 +02:00
|
|
|
%td.numeric= number_to_currency(group_order.price)
|
2009-01-29 01:57:51 +01:00
|
|
|
- else
|
2011-06-13 15:26:06 +02:00
|
|
|
%td{:colspan => 2}
|
2012-10-06 17:14:57 +02:00
|
|
|
- if total > 0
|
|
|
|
%tfooter
|
|
|
|
%tr
|
|
|
|
%th(colspan="2")
|
2013-02-08 19:16:06 +01:00
|
|
|
%th= t('.total_sum') + ':'
|
2012-10-15 21:19:17 +02:00
|
|
|
%th.numeric= number_to_currency(total)
|
2009-01-29 01:57:51 +01:00
|
|
|
- else
|
2013-02-08 19:16:06 +01:00
|
|
|
%i= t '.no_open_orders'
|