85bdf28f91
see https://github.com/foodcoops/foodsoft/pull/907 for reference and original work by viehlieb Co-authored-by: viehlieb <pf@pragma-shift.net> fix PDF Pdf
10 lines
321 B
Ruby
10 lines
321 B
Ruby
class NotifyGroupOrderInvoiceJob < ApplicationJob
|
|
def perform(group_order_invoice)
|
|
ordergroup = group_order_invoice.group_order.ordergroup
|
|
ordergroup.users.each do |user|
|
|
Mailer.deliver_now_with_user_locale user do
|
|
Mailer.group_order_invoice(group_order_invoice, user)
|
|
end
|
|
end
|
|
end
|
|
end
|