← Back
{{ business.name }}
{% if business.address %}{{ business.address }}
{% endif %} {% if business.phone %}Tel: {{ business.phone }}
{% endif %} {% if business.email %}{{ business.email }}
{% endif %} {% if business.tax_pin %}TIN: {{ business.tax_pin }}{% endif %}
INVOICE
{{ invoice.reference }}
Issue Date: {{ invoice.issue_date|date:"d M Y" }}
{% if invoice.due_date %}
Due Date: {{ invoice.due_date|date:"d M Y" }}
{% endif %}
{{ invoice.get_status_display }}
Bill To
{{ invoice.customer_display }}
{% if invoice.customer_phone %}Tel: {{ invoice.customer_phone }}
{% endif %} {% if invoice.customer_email %}{{ invoice.customer_email }}
{% endif %} {% if invoice.customer_address %}{{ invoice.customer_address }}{% endif %}
{% for item in invoice.items.all %} {% endfor %}
# Description Qty Unit Price Total
{{ forloop.counter }} {{ item.description }} {{ item.quantity }} {{ business.currency }} {{ item.unit_price|floatformat:0 }} {{ business.currency }} {{ item.line_total|floatformat:0 }}
Subtotal {{ business.currency }} {{ invoice.subtotal|floatformat:0 }}
{% if invoice.discount %}
Discount - {{ business.currency }} {{ invoice.discount|floatformat:0 }}
{% endif %}
Total {{ business.currency }} {{ invoice.total|floatformat:0 }}
{% if invoice.total_paid %}
Balance Due {{ business.currency }} {{ invoice.balance_due|floatformat:0 }}
{% endif %}
{% if invoice.note %}
Note: {{ invoice.note }}
{% endif %}