Invoice

${client.name}

${client.attention}

${client.address}

${client.city}, ${client.state} ${client.zip}

${client.phone}

${client.email}

Invoice #: ${invoice.number}
Date: ${invoice.date?date}
Due Date: ${invoice.dueDate?date}

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.products?size != 0]

Products

[#list project.products?sort_by("date") as product]

${product.name}

${product.quantity}

${product.price}

${product.total}

[/#list]

${project.productsSubtotal}

[/#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!