|
ACCOUNT STATEMENT |
||
|
{{ smallName }} No : {{vehicle.number}} |
Purchase Date : {{ vehicle.purchaseDate|date("d/m/Y") }} |
{% for serviceDetailsOne in serviceDetailsOneObj %} Business Unit : {{serviceDetailsOne.businessUnit}} {% endfor %} |
| Opening Running KM : {{vehicle.note|number_format(0, '.', ',')}} | ||
| Account Number : {{ transaction.AccountNumber }} - {{ transaction.Currency }} | Account Name : {{ transaction.AccountName }} |
|---|---|
| Opening Balance : {{ transaction.OpeningBalance|number_format(2, '.', ',') }} | Ledger Balance : {{ transaction.LedgerBalance|number_format(2, '.', ',') }} |
| Available Balance : {{ transaction.LedgerBalance|number_format(2, '.', ',') }} |
| SL No. | Date | Transaction Details | Debit | Credit | Runing Balance |
|---|---|---|---|---|---|
| {{ loop.index }} | {{ detail.trandate|date('d-m-Y') }} | {{ detail.trandetails }} | {% if detail.debit > 0 %} {{ detail.debit|number_format(2, '.', ',') }} {% endif %} | {% if detail.credit > 0 %} {{ detail.credit|number_format(2, '.', ',') }} {% endif %} | {{ runingBalance|number_format(2, '.', ',') }} |
| Total Debit Count : | {{ debitCount }} | Total Debit Amount : | {{ totalDebitAmount|number_format(2, '.', ',') }} |
| Total Credit Count : | {{ creditCount }} | Total Credit Amount : | {{ totalCreditAmount|number_format(2, '.', ',') }} |
#}