13 lines
488 B
Ruby
13 lines
488 B
Ruby
|
module Concerns::SendGroupOrderInvoicePdf
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
protected
|
||
|
|
||
|
def send_group_order_invoice_pdf group_order_invoice
|
||
|
invoice_data = group_order_invoice.load_data_for_invoice
|
||
|
invoice_data[:title] = "Rechnung für " + invoice_data[:supplier] # TODO Internationalise und load_data rausschmeißen
|
||
|
pdf = GroupOrderInvoicePdf.new group_order_invoice.load_data_for_invoice
|
||
|
send_data pdf.to_pdf, filename: pdf.filename, type: 'application/pdf'
|
||
|
end
|
||
|
end
|