9eb2125f15
OrderResult tables are removed. Data consistency is now possible through new article.price-history (ArticlePrice). Balancing-workflow needs to be updated.
17 lines
495 B
Text
17 lines
495 B
Text
- title "Bestellungen der #{@ordergroup.name}"
|
|
%p
|
|
Siehe hier alle
|
|
= link_to "laufenden Bestellungen.", :action => "index"
|
|
|
|
.single_column{:style => "width:50em"}
|
|
.box_title
|
|
%h2 beendet/nicht abgerechnet
|
|
.column_content
|
|
= render :partial => "orders", :locals => {:orders => Order.finished}
|
|
|
|
.single_column{:style => "width:50em"}
|
|
.box_title
|
|
%h2 abgerechnet
|
|
.column_content
|
|
#closed_orders
|
|
= render :partial => "orders", :locals => {:orders => @closed_orders}
|