foodsoft/app/views/messages/order_finished.rhtml

14 lines
660 B
Plaintext
Raw Normal View History

2009-01-06 11:49:19 +01:00
Hallo <%= user.nick %>!
Die Bestellung "<%= order.name %>" wurde am <%= order.ends.strftime('%d.%m.%Y um %H:%M') %> von <%= order.updated_by.nick %> beendet.
Für deine Bestellgruppe <%= group.name %> wurden die folgenden Artikel bestellt:
<% for result in results
article = result.order_article_result -%>
<%= article.name %>: <%= result.quantity %> x <%= article.unit %> = <%= result.quantity * article.gross_price %>
2009-01-06 11:49:19 +01:00
<% end -%>
Gesamtpreis: <%= total %>
2009-01-06 11:49:19 +01:00
Bestellung online einsehen: <%= ApplicationController.current.url_for(:controller => 'ordering', :action => 'my_order_result', :id => order.id) %>
Viele Grüße von <%= APP_CONFIG[:name] %>