Invoice Generation - Concept

I’m curious if someone had a format for generating invoices that they would be willing to share. I think a similar approach to the tutorial would be good but perhaps a little challenging based on that classic invoice format.

Reference: PDF reporting process with EasyMorph

Something like either of these

Hi,

I implemented this process for our drivers’ delivery notes, using a Python script to generate the PDF files. I export the data to a file (for instance Excel, but can be csv, Parquet…), generate one PDF per driver and per customer based on that file, and send the PDFs to selected dispatchers by email (this is a deliberate choice — you could also print them directly using a PowerShell script or any other method). I have to admit that LLMs were a great help in writing my “pixel-perfect” Python script.

Regards,

Chris

We have used an Excel-template with linked cells from a 2 different “data”-tabs (1 for header data, and 1 for line items) and are using easymorph to replace the data tabs, then creating a pdf from the excel file using easymorph.
So any graphical changes would be made on the excel template and easymorph does the information replacing and pdf generation

Would you mind sharing? (Remove any sensitive information/company related of course)