Customer Information
Statement For
{{ data.to.name }}
{% if data.to.address %}
{{ data.to.address | nl2br }}
{% endif %}
{% if data.to.email %}
{{ data.to.email }}
{% endif %}
Account Number
{{ data.account_number }}
Statement Date: {{ data.issue_date | date_format }}
Account Summary
Opening Balance
{{ data.opening_balance | default(0) | currency }}
Total Charges
{{ data.total_debits | default(0) | currency }}
Total Payments
{{ data.total_credits | default(0) | currency }}
Closing Balance
{{ data.closing_balance | default(0) | currency }}
Transaction Details
{% if data.transactions %}
| Date | Description | {% if data.transactions[0] and data.transactions[0].reference %}Reference | {% endif %}Debit | Credit | Balance |
|---|---|---|---|---|---|
| {{ txn.date | date_format }} | {{ txn.description | default('') }} | {% if data.transactions[0] and data.transactions[0].reference %}{{ txn.reference | default('') }} | {% endif %}{% if txn.debit and txn.debit > 0 %} {{ txn.debit | currency }} {% else %} - {% endif %} | {% if txn.credit and txn.credit > 0 %} {{ txn.credit | currency }} {% else %} - {% endif %} | {{ txn.balance | default(0) | currency }} |
| Total Debits | {{ data.total_debits | default(0) | currency }} |
| Total Credits | {{ data.total_credits | default(0) | currency }} |
| Closing Balance | {{ data.closing_balance | default(0) | currency }} |
■
No transactions recorded in this period.
Notes
{{ data.notes | nl2br }}