2009-01-29 21:28:22 +01:00
|
|
|
-title "Bestellung abschließen"
|
|
|
|
%div{:style => "width: 40em"}
|
2009-01-06 11:49:19 +01:00
|
|
|
%p
|
|
|
|
Wenn die Bestellung abgeschlossen wird, werden ebenfalls alle Gruppenkonten aktualisiert.
|
|
|
|
%br/
|
|
|
|
Die Konten werden wie folgt belastet:
|
|
|
|
%table.list{:style => "width:35em"}
|
2009-01-29 21:28:22 +01:00
|
|
|
- for group_order in @order.group_orders
|
2009-01-06 11:49:19 +01:00
|
|
|
%tr{:class => cycle('even', 'odd')}
|
2009-01-29 21:28:22 +01:00
|
|
|
%td= group_order.ordergroup.name
|
|
|
|
%td= number_to_currency(group_order.price)
|
2009-01-06 11:49:19 +01:00
|
|
|
%p
|
|
|
|
%div{:style => "float:left"}
|
2012-07-27 18:03:46 +02:00
|
|
|
= button_to "Abschließen", close_finance_order_path(@order), method: :put
|
2009-01-06 11:49:19 +01:00
|
|
|
%div{:style => "float:right"}
|
2012-07-27 18:03:46 +02:00
|
|
|
= link_to 'Zurück zur Abrechnung', new_finance_order_path(order_id: @order.id)
|