This demo demonstrates how to create a template for an invoice document with tables, QR code and more
Download the Docx template
Scroll down to see source data for the template in JSON format.
{
"InvoiceNumber": "12453",
"Customer_Name": "Wonka Industries",
"Customer_address": "2762 Woodland Terrace. California",
"Customer_email": "[email protected]",
"Customer_phone": "+1 916-876-0034",
"date":"05-05-2024",
"Products": [
{
"product_name": "Product #1",
"product_price": "100",
"product_qty": "1",
"product_total": "100"
},
{
"product_name": "Product #2",
"product_price": "120",
"product_qty": "3",
"product_total": "360"
}
],
"grand_total":"460",
"invoice_link":"https://automateddocs.com"
}