{% extends 'email/base.html.twig' %} {% block title %}Account Statement - {{ customer.name }}{% endblock %} {% block content %}
Account summary for {{ customer.name }} as of {{ statementDate|date('F d, Y') }}
| Customer | {{ customer.name }} |
| Contact | {{ customer.contactPerson }} |
| Statement Period | {{ periodStart|date('M d') }} - {{ periodEnd|date('M d, Y') }} |
| Statement Date | {{ statementDate|date('F d, Y') }} |
| Opening Balance | {{ currency.symbol }}{{ openingBalance|number_format(2, '.', ',') }} |
| New Charges | {{ currency.symbol }}{{ totalCharges|number_format(2, '.', ',') }} |
| Payments Received | - {{ currency.symbol }}{{ totalPayments|number_format(2, '.', ',') }} |
| Balance Due | {{ currency.symbol }}{{ balanceDue|number_format(2, '.', ',') }} |
| Date | Description | Charges | Payments | Balance |
|---|---|---|---|---|
| {{ periodStart|date('M d') }} | Opening Balance | - | - | {{ currency.symbol }}{{ openingBalance|number_format(2, '.', ',') }} |
| {{ transaction.date|date('M d') }} | {% if transaction.type == 'invoice' %} Invoice #{{ transaction.reference }} {% else %} Payment - {{ transaction.reference }} {% endif %} | {% if transaction.type == 'invoice' %} {{ currency.symbol }}{{ transaction.amount|number_format(2, '.', ',') }} {% else %} - {% endif %} | {% if transaction.type == 'payment' %} {{ currency.symbol }}{{ transaction.amount|number_format(2, '.', ',') }} {% else %} - {% endif %} | {{ currency.symbol }}{{ runningBalance|number_format(2, '.', ',') }} |
| Closing Balance | {{ currency.symbol }}{{ totalCharges|number_format(2, '.', ',') }} | {{ currency.symbol }}{{ totalPayments|number_format(2, '.', ',') }} | {{ currency.symbol }}{{ balanceDue|number_format(2, '.', ',') }} | |
| Invoice | Date | Due Date | Amount Due |
|---|---|---|---|
| #{{ invoice.displayInvoiceNumber }} | {{ invoice.invoiceDate|date('M d, Y') }} |
{{ invoice.dueDate|date('M d, Y') }}
{% if invoice.dueDate < 'now'|date %}
OVERDUE {% endif %} |
{{ invoice.formattedBalanceDue }} |
Please arrange payment of {{ currency.symbol }}{{ balanceDue|number_format(2, '.', ',') }} at your earliest convenience.
| Bank Name | {{ company.bankName }} |
| Account Name | {{ company.bankAccountName }} |
| Account Number | {{ company.bankAccountNumber }} |
Thank you for keeping your account up to date!
This statement is provided for your records. If you have any questions about your account, please contact us at sales@kits.co.tz.
{% endblock %}