foodsoft/app/views/ordering/my_order_result.haml

126 lines
4.9 KiB
Plaintext
Raw Normal View History

- title "Dein Bestellergebnis für #{@order.supplier.name}"
2009-01-06 11:49:19 +01:00
#element_navigation
= link_to_unless @order.previous == @order, "<< #{@order.previous.supplier.name}", :action => "my_order_result", :id => @order.previous
2009-01-06 11:49:19 +01:00
|
= link_to _("Overview"), :controller => 'ordering'
|
= link_to_unless @order.next == @order, "#{@order.next.supplier.name} >>", :action => "my_order_result", :id => @order.next
2009-01-06 11:49:19 +01:00
// Order summary
.left_column{:style => "width:45em"}
.box_title
%h2 Zusammenfassung
2009-01-06 11:49:19 +01:00
.column_content
%table
%tr{:valign => "top"}
%td{:style => "width:50%"}
%p
Lieferant:
%b=h @order.supplier.name
2009-01-06 11:49:19 +01:00
- unless @order.note.empty?
%p
Notiz:
2009-01-06 11:49:19 +01:00
=h @order.note
%p
Ende:
2009-01-06 11:49:19 +01:00
%b=h format_time(@order.ends)
%p
Bestellsumme:
- if @group_order
%b=h number_to_currency(@group_order.price)
2009-01-06 11:49:19 +01:00
- else
%b Du hast nicht bestellt.
2009-01-06 11:49:19 +01:00
%p
= "Abgerechnet von #{@order.updated_by.nick}" if @order.finished?
= "<b>Bestellung</b>" if @order.closed?
= link_to "Kommentare lesen/schreiben", "#comments"
2009-01-06 11:49:19 +01:00
// directly switch to active orders
.right_column{:style => "width:23em;"}
.box_title
%h2 Laufende Bestellungen
2009-01-06 11:49:19 +01:00
.column_content
%table
- for order in Order.open
2009-01-06 11:49:19 +01:00
%tr
%td= link_to order.supplier.name, :action => 'order', :id => order
%td= "("+ time_ago_in_words(order.ends) + ")" if order.ends
2009-01-06 11:49:19 +01:00
// Article box
2009-01-06 11:49:19 +01:00
.single_column{:style => "clear:both; width:70em;"}
.box_title
%h2 Artikelübersicht
2009-01-06 11:49:19 +01:00
.column_content#result
- if @group_order
%p= link_to("Bestellung ändern", :action => "order", :id => @order) if @order.open?
%table.list
%thead
%tr
%th{:style => "width:40%"} Name
%th Gebinde
%th Einzelpreis
%th
%abbr{:title => "Menge + Toleranz"} Bestellt
%th
%abbr{:title => "Unter Berücksichtigung der anderen Gruppen"} Zugeteilt
%th Gesamtpreis
%tbody
- total = 0 #set counter for order-sum
- for category_name, order_articles in @order.get_articles
%tr{:style => "background-color:#EFEFEF"}
%td{:style => "text-align:left;"}=h category_name
%td{:colspan => "9"}
- for oa in order_articles
- # get the order-results for the ordergroup
- goa = oa.group_order_articles.first :conditions => {:group_order_id => @group_order.id}
- if goa
- quantity = goa.quantity
- tolerance = goa.tolerance
- result = goa.orderResult[:quantity] + goa.orderResult[:tolerance]
- sub_total = oa.price.fc_price * (quantity + tolerance)
- else
- quantity, tolerance, result, sub_total = 0, 0, 0, 0
- total += sub_total
- # give the article different colors, dependent on order-result
- style = "grey"
- if (quantity > 0)
- style = result > 0 ? 'green' : 'red'
%tr{:class => cycle('even', 'odd', :name => 'articles'), :style => "color:#{style}"}
%td{:style => "width:40%"}
=h oa.article.name
- unless oa.article.note.empty?
= image_tag("lamp_grey.png", {:alt => "Notiz anzeigen", :size => "15x16", :border => "0", :onmouseover => "$('note_#{oa.id}').show();", :onmouseout => "$('note_#{oa.id}').hide();"})
%td= "#{oa.price.unit_quantity} x #{oa.article.unit}"
%td= number_to_currency(oa.price.fc_price)
%td
= quantity
= "+ #{tolerance}" if oa.price.unit_quantity > 1
%td= result > 0 ? result : "0"
%td= number_to_currency(sub_total)
- unless oa.article.note.empty?
%tr{:id => "note_#{oa.id}", :class => "note even", :style => "display:none"}
%td{:colspan => "6"}=h oa.article.note
%tr{:class => cycle('even', 'odd', :name => 'articles')}
%th{:colspan => "5"} Summe
%th= number_to_currency(total)
%br/
= link_to_top
2009-01-06 11:49:19 +01:00
- else
Du hast noch nicht bestellt.
= link_to "Das ist Deine Chance!", :action => "order", :id => @order
2009-01-06 11:49:19 +01:00
// Comments box
.single_column{:style => "width:70em;"}
.box_title
%h2=_ "Comments"
.column_content#comments
= render :partial => 'shared/comments', :locals => { :comments => @order.comments }
%p
- form_for :comment, :url => { :action => :add_comment, :id => @order } do |form|
2009-01-06 11:49:19 +01:00
%p
%b Neuen Kommentar hinzufügen:
%br/
= form.text_area :text, :cols => 50, :rows => 6
%br/
= submit_tag "Kommentar hinzufügen"
= link_to_top