2009-01-06 11:49:19 +01:00
|
|
|
%h1 Bestellung abschließen
|
|
|
|
.single_column#confirm{:style => "width:35em"}
|
|
|
|
%p
|
|
|
|
Wenn die Bestellung abgeschlossen wird, werden ebenfalls alle Gruppenkonten aktualisiert.
|
|
|
|
%br/
|
|
|
|
Die Konten werden wie folgt belastet:
|
|
|
|
%table.list{:style => "width:35em"}
|
|
|
|
- for groupResult in @order.group_order_results
|
|
|
|
%tr{:class => cycle('even', 'odd')}
|
|
|
|
%td= groupResult.group_name
|
|
|
|
%td= number_to_currency(groupResult.price)
|
|
|
|
%p
|
|
|
|
%div{:style => "float:left"}
|
2009-01-10 22:22:16 +01:00
|
|
|
= button_to "Abschließen", :action => "close", :id => @order
|
2009-01-06 11:49:19 +01:00
|
|
|
%div{:style => "float:right"}
|
2009-01-10 22:22:16 +01:00
|
|
|
= link_to 'Zurück zur Abrechnung', :action => "new", :id => @order
|