{% extends 'email/base.html.twig' %} {% block title %}Invoice Revised - #{{ invoice.displayInvoiceNumber }}{% endblock %} {% block content %}
📝

Invoice Has Been Revised

Hi {{ customer.name }}, your invoice has been updated with revisions.

Revision {{ invoice.revision }}

Invoice #{{ invoice.invoiceNumber }} has been revised. Please review the updated details below.

{% if previousTotal is defined and previousTotal != invoice.total %} {% endif %}
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 }}

Updated Invoice Items

{% for item in invoice.items %} {% endfor %} {% if invoice.taxAmount > 0 %} {% endif %}
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 }}
{% if revisionNotes is defined and revisionNotes %}

Revision Notes

{{ revisionNotes|nl2br }}

{% endif %} {% if statusUrl %}
View Updated Invoice
{% endif %}

What Changed?

This revised invoice supersedes all previous versions. Please refer to this version for accurate billing information.

{% endblock %}