Add option to send mails when an order has been received
This commit is contained in:
parent
d45256145d
commit
9a7d4bf07d
9 changed files with 89 additions and 2 deletions
13
app/views/mailer/order_received.text.haml
Normal file
13
app/views/mailer/order_received.text.haml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
= raw t '.text0', ordergroup: @group_order.ordergroup_name, order: @order.name
|
||||
|
||||
- unless @abundant_articles.empty?
|
||||
= raw "===\n" + t('.abundant_articles') + ":"
|
||||
- @abundant_articles.each do |order_article|
|
||||
- article = order_article.article
|
||||
= raw t('.article_details', name: article.name, ordered: order_article.units_to_order, received: order_article.units_received, unit: article.unit)
|
||||
|
||||
- unless @scarce_articles.empty?
|
||||
= raw "===\n" + t('.scarce_articles') + ":"
|
||||
- @scarce_articles.each do |order_article|
|
||||
- article = order_article.article
|
||||
= raw t('.article_details', name: article.name, ordered: order_article.units_to_order, received: order_article.units_received, unit: article.unit)
|
||||
Loading…
Add table
Add a link
Reference in a new issue