2014-06-13 06:30:40 +00:00
|
|
|
<h2 class="text-center">{%= __("Statement of Account") %}</h2>
|
2017-05-11 06:08:30 +00:00
|
|
|
<h4 class="text-center">
|
|
|
|
{% if (filters.party_name) { %}
|
|
|
|
{%= filters.party_name %}
|
|
|
|
{% } else if (filters.party) { %}
|
|
|
|
{%= filters.party %}
|
|
|
|
{% } else if (filters.account) { %}
|
|
|
|
{%= filters.account %}
|
|
|
|
{% } %}
|
|
|
|
</h4>
|
2014-07-17 06:52:58 +00:00
|
|
|
<h5 class="text-center">
|
|
|
|
{%= dateutil.str_to_user(filters.from_date) %}
|
2014-07-17 06:59:56 +00:00
|
|
|
{%= __("to") %}
|
2014-07-17 06:52:58 +00:00
|
|
|
{%= dateutil.str_to_user(filters.to_date) %}
|
|
|
|
</h5>
|
2014-06-12 13:22:47 +00:00
|
|
|
<hr>
|
|
|
|
<table class="table table-bordered">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-01-20 07:24:25 +00:00
|
|
|
<th style="width: 12%">{%= __("Date") %}</th>
|
2014-06-12 13:22:47 +00:00
|
|
|
<th style="width: 15%">{%= __("Ref") %}</th>
|
2018-01-18 04:02:43 +00:00
|
|
|
<th style="width: 25%">{%= __("Party") %}</th>
|
2014-06-12 13:22:47 +00:00
|
|
|
<th style="width: 15%">{%= __("Debit") %}</th>
|
|
|
|
<th style="width: 15%">{%= __("Credit") %}</th>
|
2018-01-20 07:24:25 +00:00
|
|
|
<th style="width: 18%">{%= __("Balance") %}</th>
|
2014-06-12 13:22:47 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for(var i=0, l=data.length; i<l; i++) { %}
|
|
|
|
<tr>
|
2018-01-18 04:02:43 +00:00
|
|
|
{% if(data[i].posting_date) { %}
|
|
|
|
<td>{%= dateutil.str_to_user(data[i].posting_date) %}</td>
|
|
|
|
<td>{%= data[i].voucher_type %}
|
|
|
|
<br>{%= data[i].voucher_no %}</td>
|
2015-05-27 07:31:38 +00:00
|
|
|
<td>
|
|
|
|
{% if(!(filters.party || filters.account)) { %}
|
2018-01-18 04:02:43 +00:00
|
|
|
{%= data[i].party || data[i].account %}
|
2015-05-27 07:31:38 +00:00
|
|
|
<br>
|
|
|
|
{% } %}
|
|
|
|
|
2018-01-18 04:02:43 +00:00
|
|
|
{{ __("Against") }}: {%= data[i].against %}
|
|
|
|
<br>{%= __("Remarks") %}: {%= data[i].remarks %}
|
|
|
|
{% if(data[i].bill_no) { %}
|
|
|
|
<br>{%= __("Supplier Invoice No") %}: {%= data[i].bill_no %}
|
|
|
|
{% } %}
|
|
|
|
</td>
|
|
|
|
{% if(filters.print_in_account_currency) { %}
|
|
|
|
<td style="text-align: right">
|
|
|
|
{%= format_currency(data[i].debit_in_account_currency, data[i].account_currency) %}
|
|
|
|
</td>
|
|
|
|
<td style="text-align: right">
|
|
|
|
{%= format_currency(data[i].credit_in_account_currency, data[i].account_currency) %}
|
|
|
|
</td>
|
|
|
|
{% } else { %}
|
|
|
|
<td style="text-align: right">
|
|
|
|
{%= format_currency(data[i].debit) %}</td>
|
|
|
|
<td style="text-align: right">
|
|
|
|
{%= format_currency(data[i].credit) %}</td>
|
|
|
|
{% } %}
|
2014-06-12 13:22:47 +00:00
|
|
|
{% } else { %}
|
|
|
|
<td></td>
|
|
|
|
<td></td>
|
2018-01-18 04:02:43 +00:00
|
|
|
<td><b>{%= frappe.format(data[i].account, {fieldtype: "Link"}) || " " %}</b></td>
|
|
|
|
{% if(filters.print_in_account_currency) { %}
|
|
|
|
<td style="text-align: right">
|
|
|
|
{%= data[i].account && format_currency(data[i].debit_in_account_currency, data[i].account_currency) %}</td>
|
|
|
|
<td style="text-align: right">
|
|
|
|
{%= data[i].account && format_currency(data[i].credit_in_account_currency, data[i].account_currency) %}</td>
|
|
|
|
{% } else { %}
|
|
|
|
<td style="text-align: right">
|
|
|
|
{%= data[i].account && format_currency(data[i].debit) %}
|
|
|
|
</td>
|
|
|
|
<td style="text-align: right">
|
|
|
|
{%= data[i].account && format_currency(data[i].credit) %}
|
|
|
|
</td>
|
|
|
|
{% } %}
|
|
|
|
{% } %}
|
|
|
|
{% if(filters.print_in_account_currency) { %}
|
2018-01-20 07:24:25 +00:00
|
|
|
<td style="text-align: right">{%= get_currency_symbol(data[i].account_currency)%}
|
|
|
|
{%= data[i].balance_in_account_currency %}</td>
|
2018-01-18 04:02:43 +00:00
|
|
|
{% } else { %}
|
2018-01-20 07:24:25 +00:00
|
|
|
<td style="text-align: right">{%= get_currency_symbol()%}
|
|
|
|
{%= data[i].balance %}</td>
|
2014-06-12 13:22:47 +00:00
|
|
|
{% } %}
|
|
|
|
</tr>
|
|
|
|
{% } %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2014-06-27 15:23:13 +00:00
|
|
|
<p class="text-right text-muted">Printed On {%= dateutil.str_to_user(dateutil.get_datetime_as_string()) %}</p>
|