{% extends 'base.html.twig' %} {% block title %}Invoice #{{ invoice.displayInvoiceNumber }}{% endblock %} {% block stylesheets %} {% endblock %} {% block body %}
{{ company.name }},
{{ company.formattedAddress }}.
{{ company.phone }}
{% endif %}
{% endif %}
Bill To
{{ invoice.customer.name }}
{{ invoice.customer.formattedAddress }}
{% if invoice.customer.contactPerson %}Att: {{ invoice.customer.contactPerson }}{% if invoice.customer.contactEmail %}, {{ invoice.customer.contactEmail }}{% endif %}
{% endif %}| Invoice # | {{ invoice.displayInvoiceNumber }} |
| Invoice Date | {{ invoice.invoiceDate|date('d/m/Y') }} |
| Due Date | {{ invoice.dueDate|date('d/m/Y') }} |
| Qty | Description | Amount |
|---|---|---|
| {{ item.quantity }} |
{% if item.product %}
{{ item.product.name }}
{% if item.description %} {{ item.description }}{% endif %} {% else %} {{ item.description }} {% endif %} |
{{ item.amount|money }} |
| Subtotal | {{ invoice.subtotal|money }} | |
| Tax ({{ invoice.taxRate }}%) | {{ invoice.taxAmount|money }} | |
| TOTAL | {{ invoice.currency.symbol }}{{ invoice.total|money }} | |
| TZS Equivalent | {{ invoice.formattedTotalInTzs }} (1 {{ invoice.currency.code }} = {{ invoice.exchangeRate|money }} TZS) | |
Payment Information
Terms & Conditions