Name |
Quantity |
Price |
Total |
---|---|---|---|
[#list invoice.projects?sort_by("name") as project] | |||
${project.name} |
|||
[#if project.services?size != 0] | |||
Services |
|||
[#list project.services?sort_by("date") as service] | |||
${service.name} |
${service.quantity} |
${service.price} |
${service.total} |
[/#list] | |||
${project.servicesSubtotal} |
|||
[/#if] | |||
[#if project.expenses?size != 0] | |||
Expenses |
|||
[#list project.expenses?sort_by("date") as expense] | |||
${expense.name} |
${expense.quantity} |
${expense.price} |
${expense.total} |
[/#list] | |||
${project.expensesSubtotal} |
|||
[/#if] | |||
[/#list] | |||
Total |
${invoice.total} |
||
[#if invoice.taxable] | |||
Taxes |
${invoice.taxesTotal} |
||
Grand Total |
${invoice.grandTotal} |
||
[/#if] |
Thank you for your business!