Moved balancing logic into new namespace 'finance'.
This commit is contained in:
parent
c282cae79c
commit
47398c6a70
27 changed files with 277 additions and 268 deletions
16
app/views/finance/balancing/confirm.html.haml
Normal file
16
app/views/finance/balancing/confirm.html.haml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
%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"}
|
||||
= button_to "Abschließen", :action => "close", :id => @order
|
||||
%div{:style => "float:right"}
|
||||
= link_to 'Zurück zur Abrechnung', :action => "new", :id => @order
|
||||
Loading…
Add table
Add a link
Reference in a new issue