Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Templates pdf for invoices with ReportLab

I'm wondering myself if there's any template code for make invoices output in pdf with reportlab, I'm developing in Django a platform sales and I need to output some data with a invoice look, I tried further but I didn't find anything, anyone know some resources? I don't care if I need to use another library, of course, for python.

Regards!

Edit:

Finally I found a solution with this package: https://pypi.python.org/pypi/django-invoice if anyone is interested.

Regards!

like image 388
Enot Avatar asked Jul 19 '13 12:07

Enot


1 Answers

If you are familiar with HTML/CSS, you can first generate an HTML invoice using django's template, and then use the xhtml2pdf package to convert it into PDF format.

The xhtml2pdf is based on top of Reportlab, html5lib and pyPdf. I've used it before, and it solved my problem.

like image 174
yc. Avatar answered Nov 17 '22 17:11

yc.