Skip to content

Instantly share code, notes, and snippets.

@airspeed
Last active December 14, 2015 07:19
Show Gist options
  • Save airspeed/5049668 to your computer and use it in GitHub Desktop.
Save airspeed/5049668 to your computer and use it in GitHub Desktop.
Erstellt das erste Mahndokument auf deutsch.
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_de.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