Supplier:
${business.name}
Address:
${business.address}
Phone:
${business.phone}
Invoice
Client:
${client.name} Address: ${client.address} Phone: ${client.phone} |
Number:
${invoice.number} Date: ${invoice.date?date} |
Name | Quantity | Price | Total |
---|---|---|---|
Services | |||
[#list invoice.serviceItems as item] | |||
${item.name} | ${item.quantity} | ${item.price} | ${item.total} |
[/#list] | |||
Products | |||
[#list invoice.productItems as item] | |||
${item.name} | ${item.quantity} | ${item.price} | ${item.total} |
[/#list] | |||
[#if invoice.expenseItems?size != 0] | |||
Expenses | |||
[#list invoice.expenseItems as item] | |||
${item.name} | ${item.quantity} | ${item.price} | ${item.total} |
[/#list] | |||
[/#if] | |||
Total | ${invoice.total} |
Thank you for your business!