{% extends 'email/base.html.twig' %} {% block title %}Invoice Revised - #{{ invoice.displayInvoiceNumber }}{% endblock %} {% block content %}
Hi {{ customer.name }}, your invoice has been updated with revisions.
Invoice #{{ invoice.invoiceNumber }} has been revised. Please review the updated details below.
| Invoice Number | #{{ invoice.displayInvoiceNumber }} |
| Revision | Rev. {{ invoice.revision }} |
| Invoice Date | {{ invoice.invoiceDate|date('F d, Y') }} |
| Due Date | {{ invoice.dueDate|date('F d, Y') }} |
| Previous Total | {{ invoice.currency.symbol }}{{ previousTotal|number_format(2, '.', ',') }} |
| New Total | {{ invoice.formattedTotal }} |
| Description | Qty | Amount |
|---|---|---|
| {{ item.description }} | {{ item.quantity }} | {{ invoice.currency.symbol }}{{ item.amount|number_format(2, '.', ',') }} |
| Subtotal | {{ invoice.currency.symbol }}{{ invoice.subtotal|number_format(2, '.', ',') }} | |
| Tax ({{ invoice.taxRate }}%) | {{ invoice.currency.symbol }}{{ invoice.taxAmount|number_format(2, '.', ',') }} | |
| Total | {{ invoice.formattedTotal }} | |
{{ revisionNotes|nl2br }}
This revised invoice supersedes all previous versions. Please refer to this version for accurate billing information.