Last active
December 14, 2015 07:19
-
-
Save airspeed/5049671 to your computer and use it in GitHub Desktop.
Erstellt das erste Mahndokument auf englisch.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def print_invoice(invoice, out) | |
i = invoice | |
o = i.order_cart | |
l = i.customer.lang[0..1].downcase === 'de' ? 'de' : 'en' # unoptimal, reicht aber im Augenblick | |
params = {:@invoice_address => o.invoice_address, :@order_cart => o, :@shipments => o.shipments, :@invoice => i, :@filedate => Date.today} | |
Clixxie::PdfGenerator.from_template "invoice_mailer/mahnung_1_en.pdf.erb", out, "#{i.invoice_number}_1m.pdf", params | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment