14 lines
No EOL
628 B
Text
14 lines
No EOL
628 B
Text
Liebe <%= group.name %>,
|
|
|
|
die Bestellung "<%= order.name %>" wurde am <%= order.ends.strftime('%d.%m.%Y um %H:%M') %> von <%= order.updated_by.nick %> beendet.
|
|
|
|
Für Euch 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 %>
|
|
<% end -%>
|
|
Gesamtpreis: <%= total %>
|
|
|
|
Bestellung online einsehen: <%= ApplicationController.current.url_for(:controller => 'ordering', :action => 'my_order_result', :id => order.id) %>
|
|
|
|
Viele Grüße von <%= APP_CONFIG[:name] %> |