| Invoice No. | {{ invoice.number }} | ||
| PO No. | {{ invoice.po }} | ||
| Invoice Date | {{ invoice.date | date: "%B %e, %Y" }} | ||
| Invoice Paid | {{ invoice.paid_date | date: "%B %e, %Y" }} | ||
| Invoice Status | {% if invoice.retainer_credit? %}{{ settings.retainer_credit_title | upcase }} | {% elsif invoice.credit? %}{{ settings.credit_title | upcase }} | {% else %}PAID | {% endif %}
| Payment Due | {{ invoice | invoice_due }} |
{{ account.company }}
{{ account | two_line_address : invoice.client }} {% if account.email != blank %}{{ account.email | h | mail_to: account.email }}
{% endif %} {% if account.invoice_extra_fields != blank %}{{ invoice.client.name }}
{{ invoice.client | two_line_address : account }} {% if invoice.client.number != blank %}ID: {{ invoice.client.number | h }}
{% endif %} {% if invoice.client.tax_id != blank %}Tax ID: {{ invoice.client.tax_id | h }}
{% endif %} {% if invoice.client.invoice_extra_fields != blank %}| Description | Qty | Total Price | ||
|---|---|---|---|---|
| {{ item.title | raw | auto_link }} | ||||
| {{ item.title | safe_textilize | auto_link }} | {{ item.quantity | numeric: 4 }} | {% if item.taxable? %} + tax {% endif %} |
{% if item.discount_amount > 0 %}
{% endif %} {{ item.cost | currency: invoice.currency_code }} |
|
|
There are no invoice items. |
||||
| Invoice Subtotal | {{ invoice.total_gross | currency: invoice.currency_code }} | |||
| Invoice Discounts | ({{ invoice.total_discount | currency: invoice.currency_code }}) | |||
| Late Fees | {{ invoice.subtotal_late_fees | currency: invoice.currency_code }} | |||
| {{ invoice.tax_label }} ({{ invoice.tax | tax_percentage }} of taxable items) | {{ invoice.total_tax | currency: invoice.currency_code }} | |||
| {{ invoice.tax2_label }} ({{ invoice.tax2 | tax_percentage }} of taxable items) | {{ invoice.total_tax2 | currency: invoice.currency_code }} | |||
| {{ invoice.tax3_label }} ({{ invoice.tax3 | tax_percentage }} of taxable items) | {{ invoice.total_tax3 | currency: invoice.currency_code }} | |||
| Invoice Total | {{ invoice.total_cost | currency: invoice.currency_code }} | |||
| {% if payment.retainer_draw %}Retainer Applied{% else %}Invoice Payment{% endif %} - {{ payment.date | date: "%B %e, %Y" }} {% if payment.transaction_fee_amount > 0 %} ({{ payment.transaction_fee_amount | currency: invoice.currency_code }} fee) {% endif %} | ({{ payment.amount | currency: invoice.currency_code }}) | |||
| {{ settings.retainer_credit_title }} Amount | ({{ invoice.currency_code }} {{ invoice.pure_balance | times:-1 | currency: invoice.currency_code }}) | |||
| {{ settings.credit_title }} Amount | ({{ invoice.currency_code }} {{ invoice.pure_balance | times:-1 | currency: invoice.currency_code }}) | |||
| {% if invoice.cancelled? %} Waived Balance {% else %} Remaining Balance {% endif %} | {{ invoice.currency_code }} {{ invoice.balance | currency: invoice.currency_code }} | |||
| Total Due | {{ invoice.currency_code }} {{ invoice.balance | currency: invoice.currency_code }} | |||