fix: Print/PDF of AR/AP report after refactoring (#18931)
This commit is contained in:
parent
6298da4458
commit
b5bd91417d
@ -1,275 +1,269 @@
|
|||||||
<style>
|
<style>
|
||||||
.print-format {
|
.print-format {
|
||||||
padding: 4mm;
|
padding: 4mm;
|
||||||
font-size: 8.0pt !important;
|
font-size: 8.0pt !important;
|
||||||
}
|
}
|
||||||
.print-format td {
|
.print-format td {
|
||||||
vertical-align:middle !important;
|
vertical-align:middle !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<h2 class="text-center" style="margin-top:0">{%= __(report.report_name) %}</h2>
|
<h2 class="text-center" style="margin-top:0">{%= __(report.report_name) %}</h2>
|
||||||
<h4 class="text-center">
|
<h4 class="text-center">
|
||||||
{% if (filters.customer_name) { %}
|
{% if (filters.customer_name) { %}
|
||||||
{%= filters.customer_name %}
|
{%= filters.customer_name %}
|
||||||
{% } else { %}
|
{% } else { %}
|
||||||
{%= filters.customer || filters.supplier %}
|
{%= filters.customer || filters.supplier %}
|
||||||
{% } %}
|
|
||||||
</h4>
|
|
||||||
<h6 class="text-center">
|
|
||||||
{% if (filters.tax_id) { %}
|
|
||||||
{%= __("Tax Id: ")%} {%= filters.tax_id %}
|
|
||||||
{% } %}
|
{% } %}
|
||||||
</h6>
|
</h4>
|
||||||
<h5 class="text-center">
|
<h6 class="text-center">
|
||||||
{%= __(filters.ageing_based_on) %}
|
{% if (filters.tax_id) { %}
|
||||||
{%= __("Until") %}
|
{%= __("Tax Id: ")%} {%= filters.tax_id %}
|
||||||
{%= frappe.datetime.str_to_user(filters.report_date) %}
|
{% } %}
|
||||||
</h5>
|
</h6>
|
||||||
|
<h5 class="text-center">
|
||||||
|
{%= __(filters.ageing_based_on) %}
|
||||||
|
{%= __("Until") %}
|
||||||
|
{%= frappe.datetime.str_to_user(filters.report_date) %}
|
||||||
|
</h5>
|
||||||
|
|
||||||
<div class="clearfix">
|
<div class="clearfix">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
{% if(filters.payment_terms) { %}
|
{% if(filters.payment_terms) { %}
|
||||||
<strong>{%= __("Payment Terms") %}:</strong> {%= filters.payment_terms %}
|
<strong>{%= __("Payment Terms") %}:</strong> {%= filters.payment_terms %}
|
||||||
{% } %}
|
{% } %}
|
||||||
|
</div>
|
||||||
|
<div class="pull-right">
|
||||||
|
{% if(filters.credit_limit) { %}
|
||||||
|
<strong>{%= __("Credit Limit") %}:</strong> {%= format_currency(filters.credit_limit) %}
|
||||||
|
{% } %}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="pull-right">
|
|
||||||
{% if(filters.credit_limit) { %}
|
{% if(filters.show_future_payments) { %}
|
||||||
<strong>{%= __("Credit Limit") %}:</strong> {%= format_currency(filters.credit_limit) %}
|
{% var balance_row = data.slice(-1).pop();
|
||||||
|
var range1 = report.columns[11].label;
|
||||||
|
var range2 = report.columns[12].label;
|
||||||
|
var range3 = report.columns[13].label;
|
||||||
|
var range4 = report.columns[14].label;
|
||||||
|
var range5 = report.columns[15].label;
|
||||||
|
%}
|
||||||
|
{% if(balance_row) { %}
|
||||||
|
<table class="table table-bordered table-condensed">
|
||||||
|
<caption class="text-right">(Amount in {%= data[0]["currency"] || "" %})</caption>
|
||||||
|
<colgroup>
|
||||||
|
<col style="width: 30mm;">
|
||||||
|
<col style="width: 18mm;">
|
||||||
|
<col style="width: 18mm;">
|
||||||
|
<col style="width: 18mm;">
|
||||||
|
<col style="width: 18mm;">
|
||||||
|
<col style="width: 18mm;">
|
||||||
|
<col style="width: 18mm;">
|
||||||
|
<col style="width: 18mm;">
|
||||||
|
</colgroup>
|
||||||
|
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>{%= __(" ") %}</th>
|
||||||
|
<th>{%= __(range1) %}</th>
|
||||||
|
<th>{%= __(range2) %}</th>
|
||||||
|
<th>{%= __(range3) %}</th>
|
||||||
|
<th>{%= __(range4) %}</th>
|
||||||
|
<th>{%= __(range5) %}</th>
|
||||||
|
<th>{%= __("Total") %}</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>{%= __("Total Outstanding") %}</td>
|
||||||
|
<td class="text-right">{%= format_number(balance_row["range1"], null, 2) %}</td>
|
||||||
|
<td class="text-right">{%= format_currency(balance_row["range2"]) %}</td>
|
||||||
|
<td class="text-right">{%= format_currency(balance_row["range3"]) %}</td>
|
||||||
|
<td class="text-right">{%= format_currency(balance_row["range4"]) %}</td>
|
||||||
|
<td class="text-right">{%= format_currency(balance_row["range5"]) %}</td>
|
||||||
|
<td class="text-right">
|
||||||
|
{%= format_currency(flt(balance_row["outstanding"]), data[data.length-1]["currency"]) %}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<td>{%= __("Future Payments") %}</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="text-right">
|
||||||
|
{%= format_currency(flt(balance_row[("future_amount")]), data[data.length-1]["currency"]) %}
|
||||||
|
</td>
|
||||||
|
<tr class="cvs-footer">
|
||||||
|
<th class="text-left">{%= __("Cheques Required") %}</th>
|
||||||
|
<th></th>
|
||||||
|
<th></th>
|
||||||
|
<th></th>
|
||||||
|
<th></th>
|
||||||
|
<th></th>
|
||||||
|
<th class="text-right">
|
||||||
|
{%= format_currency(flt(balance_row["outstanding"] - balance_row[("future_amount")]), data[data.length-1]["currency"]) %}</th>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
|
||||||
|
</table>
|
||||||
|
{% } %}
|
||||||
{% } %}
|
{% } %}
|
||||||
</div>
|
<table class="table table-bordered">
|
||||||
</div>
|
|
||||||
|
|
||||||
{% if(filters.show_future_payments) { %}
|
|
||||||
{% var balance_row = data.slice(-1).pop();
|
|
||||||
var range1 = report.columns[11].label;
|
|
||||||
var range2 = report.columns[12].label;
|
|
||||||
var range3 = report.columns[13].label;
|
|
||||||
var range4 = report.columns[14].label;
|
|
||||||
var range5 = report.columns[15].label;
|
|
||||||
var range6 = report.columns[16].label;
|
|
||||||
%}
|
|
||||||
{% if(balance_row) { %}
|
|
||||||
<table class="table table-bordered table-condensed">
|
|
||||||
<caption class="text-right">(Amount in {%= data[0][__("currency")] || "" %})</caption>
|
|
||||||
<colgroup>
|
|
||||||
<col style="width: 30mm;">
|
|
||||||
<col style="width: 18mm;">
|
|
||||||
<col style="width: 18mm;">
|
|
||||||
<col style="width: 18mm;">
|
|
||||||
<col style="width: 18mm;">
|
|
||||||
<col style="width: 18mm;">
|
|
||||||
<col style="width: 18mm;">
|
|
||||||
<col style="width: 18mm;">
|
|
||||||
<col style="width: 18mm;">
|
|
||||||
</colgroup>
|
|
||||||
|
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>{%= __(" ") %}</th>
|
{% if(report.report_name === "Accounts Receivable" || report.report_name === "Accounts Payable") { %}
|
||||||
<th>{%= __(range1) %}</th>
|
<th style="width: 10%">{%= __("Date") %}</th>
|
||||||
<th>{%= __(range2) %}</th>
|
<th style="width: 4%">{%= __("Age (Days)") %}</th>
|
||||||
<th>{%= __(range3) %}</th>
|
|
||||||
<th>{%= __(range4) %}</th>
|
{% if(report.report_name === "Accounts Receivable" && filters.show_sales_person) { %}
|
||||||
<th>{%= __(range5) %}</th>
|
<th style="width: 14%">{%= __("Reference") %}</th>
|
||||||
<th>{%= __(range6) %}</th>
|
<th style="width: 10%">{%= __("Sales Person") %}</th>
|
||||||
<th>{%= __("Total") %}</th>
|
{% } else { %}
|
||||||
|
<th style="width: 24%">{%= __("Reference") %}</th>
|
||||||
|
{% } %}
|
||||||
|
{% if(!filters.show_future_payments) { %}
|
||||||
|
<th style="width: 20%">{%= (filters.customer || filters.supplier) ? __("Remarks"): __("Party") %}</th>
|
||||||
|
{% } %}
|
||||||
|
<th style="width: 10%; text-align: right">{%= __("Invoiced Amount") %}</th>
|
||||||
|
{% if(!filters.show_future_payments) { %}
|
||||||
|
<th style="width: 10%; text-align: right">{%= __("Paid Amount") %}</th>
|
||||||
|
<th style="width: 10%; text-align: right">{%= report.report_name === "Accounts Receivable" ? __('Credit Note') : __('Debit Note') %}</th>
|
||||||
|
{% } %}
|
||||||
|
<th style="width: 10%; text-align: right">{%= __("Outstanding Amount") %}</th>
|
||||||
|
{% if(filters.show_future_payments) { %}
|
||||||
|
{% if(report.report_name === "Accounts Receivable") { %}
|
||||||
|
<th style="width: 12%">{%= __("Customer LPO No.") %}</th>
|
||||||
|
{% } %}
|
||||||
|
<th style="width: 10%">{%= __("Future Payment Ref") %}</th>
|
||||||
|
<th style="width: 10%">{%= __("Future Payment Amount") %}</th>
|
||||||
|
<th style="width: 10%">{%= __("Remaining Balance") %}</th>
|
||||||
|
{% } %}
|
||||||
|
{% } else { %}
|
||||||
|
<th style="width: 40%">{%= (filters.customer || filters.supplier) ? __("Remarks"): __("Party") %}</th>
|
||||||
|
<th style="width: 15%">{%= __("Total Invoiced Amount") %}</th>
|
||||||
|
<th style="width: 15%">{%= __("Total Paid Amount") %}</th>
|
||||||
|
<th style="width: 15%">{%= report.report_name === "Accounts Receivable Summary" ? __('Credit Note Amount') : __('Debit Note Amount') %}</th>
|
||||||
|
<th style="width: 15%">{%= __("Total Outstanding Amount") %}</th>
|
||||||
|
{% } %}
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
{% for(var i=0, l=data.length; i<l; i++) { %}
|
||||||
<td>{%= __("Total Outstanding") %}</td>
|
<tr>
|
||||||
<td class="text-right">{%= format_number(balance_row[range1], null, 2) %}</td>
|
{% if(report.report_name === "Accounts Receivable" || report.report_name === "Accounts Payable") { %}
|
||||||
<td class="text-right">{%= format_currency(balance_row[range2]) %}</td>
|
{% if(data[i]["party"]) { %}
|
||||||
<td class="text-right">{%= format_currency(balance_row[range3]) %}</td>
|
<td>{%= frappe.datetime.str_to_user(data[i]["posting_date"]) %}</td>
|
||||||
<td class="text-right">{%= format_currency(balance_row[range4]) %}</td>
|
<td style="text-align: right">{%= data[i]["age"] %}</td>
|
||||||
<td class="text-right">{%= format_currency(balance_row[range5]) %}</td>
|
<td>
|
||||||
<td class="text-right">{%= format_currency(balance_row[range6]) %}</td>
|
{% if(!filters.show_future_payments) { %}
|
||||||
<td class="text-right">
|
{%= data[i]["voucher_type"] %}
|
||||||
{%= format_currency(flt(balance_row[("outstanding_amount")]), data[data.length-1]["currency"]) %}
|
<br>
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<td>{%= __("PDC/LC") %}</td>
|
|
||||||
<td></td>
|
|
||||||
<td></td>
|
|
||||||
<td></td>
|
|
||||||
<td></td>
|
|
||||||
<td></td>
|
|
||||||
<td></td>
|
|
||||||
<td class="text-right">
|
|
||||||
{%= format_currency(flt(balance_row[("pdc/lc_amount")]), data[data.length-1]["currency"]) %}
|
|
||||||
</td>
|
|
||||||
<tr class="cvs-footer">
|
|
||||||
<th class="text-left">{%= __("Cheques Required") %}</th>
|
|
||||||
<th></th>
|
|
||||||
<th></th>
|
|
||||||
<th></th>
|
|
||||||
<th></th>
|
|
||||||
<th></th>
|
|
||||||
<th></th>
|
|
||||||
<th class="text-right">
|
|
||||||
{%= format_currency(flt(balance_row[("outstanding_amount")]-balance_row[("pdc/lc_amount")]), data[data.length-1]["currency"]) %}</th>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
{% } %}
|
|
||||||
{% } %}
|
|
||||||
<table class="table table-bordered">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
{% if(report.report_name === "Accounts Receivable" || report.report_name === "Accounts Payable") { %}
|
|
||||||
<th style="width: 10%">{%= __("Date") %}</th>
|
|
||||||
<th style="width: 4%">{%= __("Age (Days)") %}</th>
|
|
||||||
|
|
||||||
{% if(report.report_name === "Accounts Receivable" && filters.show_sales_person) { %}
|
|
||||||
<th style="width: 14%">{%= __("Reference") %}</th>
|
|
||||||
<th style="width: 10%">{%= __("Sales Person") %}</th>
|
|
||||||
{% } else { %}
|
|
||||||
<th style="width: 24%">{%= __("Reference") %}</th>
|
|
||||||
{% } %}
|
|
||||||
{% if(!filters.show_future_payments) { %}
|
|
||||||
<th style="width: 20%">{%= (filters.customer || filters.supplier) ? __("Remarks"): __("Party") %}</th>
|
|
||||||
{% } %}
|
|
||||||
<th style="width: 10%; text-align: right">{%= __("Invoiced Amount") %}</th>
|
|
||||||
{% if(!filters.show_future_payments) { %}
|
|
||||||
<th style="width: 10%; text-align: right">{%= __("Paid Amount") %}</th>
|
|
||||||
<th style="width: 10%; text-align: right">{%= report.report_name === "Accounts Receivable" ? __('Credit Note') : __('Debit Note') %}</th>
|
|
||||||
{% } %}
|
|
||||||
<th style="width: 10%; text-align: right">{%= __("Outstanding Amount") %}</th>
|
|
||||||
{% if(filters.show_future_payments) { %}
|
|
||||||
{% if(report.report_name === "Accounts Receivable") { %}
|
|
||||||
<th style="width: 12%">{%= __("Customer LPO No.") %}</th>
|
|
||||||
{% } %}
|
|
||||||
<th style="width: 10%">{%= __("PDC/LC Ref") %}</th>
|
|
||||||
<th style="width: 10%">{%= __("PDC/LC Amount") %}</th>
|
|
||||||
<th style="width: 10%">{%= __("Remaining Balance") %}</th>
|
|
||||||
{% } %}
|
|
||||||
{% } else { %}
|
|
||||||
<th style="width: 40%">{%= (filters.customer || filters.supplier) ? __("Remarks"): __("Party") %}</th>
|
|
||||||
<th style="width: 15%">{%= __("Total Invoiced Amount") %}</th>
|
|
||||||
<th style="width: 15%">{%= __("Total Paid Amount") %}</th>
|
|
||||||
<th style="width: 15%">{%= report.report_name === "Accounts Receivable Summary" ? __('Credit Note Amount') : __('Debit Note Amount') %}</th>
|
|
||||||
<th style="width: 15%">{%= __("Total Outstanding Amount") %}</th>
|
|
||||||
{% } %}
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{% for(var i=0, l=data.length; i<l; i++) { %}
|
|
||||||
<tr>
|
|
||||||
{% if(report.report_name === "Accounts Receivable" || report.report_name === "Accounts Payable") { %}
|
|
||||||
{% if(data[i][__("Customer")] || data[i][__("Supplier")]) { %}
|
|
||||||
<td>{%= frappe.datetime.str_to_user(data[i]["posting_date"]) %}</td>
|
|
||||||
<td style="text-align: right">{%= data[i][__("Age (Days)")] %}</td>
|
|
||||||
<td>
|
|
||||||
{% if(!filters.show_future_payments) { %}
|
|
||||||
{%= data[i]["voucher_type"] %}
|
|
||||||
<br>
|
|
||||||
{% } %}
|
|
||||||
{%= data[i]["voucher_no"] %}
|
|
||||||
</td>
|
|
||||||
|
|
||||||
{% if(report.report_name === "Accounts Receivable" && filters.show_sales_person) { %}
|
|
||||||
<td>{%= data[i]["sales_person"] %}</td>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
{% if(!filters.show_future_payments) { %}
|
|
||||||
<td>
|
|
||||||
{% if(!(filters.customer || filters.supplier)) { %}
|
|
||||||
{%= data[i][__("Customer")] || data[i][__("Supplier")] %}
|
|
||||||
{% if(data[i][__("Customer Name")] && data[i][__("Customer Name")] != data[i][__("Customer")]) { %}
|
|
||||||
<br> {%= data[i][__("Customer Name")] %}
|
|
||||||
{% } else if(data[i][__("Supplier Name")] != data[i][__("Supplier")]) { %}
|
|
||||||
<br> {%= data[i][__("Supplier Name")] %}
|
|
||||||
{% } %}
|
{% } %}
|
||||||
|
{%= data[i]["voucher_no"] %}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
{% if(report.report_name === "Accounts Receivable" && filters.show_sales_person) { %}
|
||||||
|
<td>{%= data[i]["sales_person"] %}</td>
|
||||||
{% } %}
|
{% } %}
|
||||||
<div>
|
|
||||||
{% if data[i][__("Remarks")] %}
|
|
||||||
{%= __("Remarks") %}:
|
|
||||||
{%= data[i][__("Remarks")] %}
|
|
||||||
{% } %}
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
<td style="text-align: right">
|
{% if(!filters.show_future_payments) { %}
|
||||||
{%= format_currency(data[i]["invoiced_amount"], data[i]["currency"]) %}</td>
|
|
||||||
|
|
||||||
{% if(!filters.show_future_payments) { %}
|
|
||||||
<td style="text-align: right">
|
|
||||||
{%= format_currency(data[i]["paid_amount"], data[i]["currency"]) %}</td>
|
|
||||||
<td style="text-align: right">
|
|
||||||
{%= report.report_name === "Accounts Receivable" ? format_currency(data[i]["credit_note"], data[i]["currency"]) : format_currency(data[i]["debit_note"], data[i]["currency"]) %}</td>
|
|
||||||
{% } %}
|
|
||||||
<td style="text-align: right">
|
|
||||||
{%= format_currency(data[i]["outstanding_amount"], data[i]["currency"]) %}</td>
|
|
||||||
|
|
||||||
{% if(filters.show_future_payments) { %}
|
|
||||||
{% if(report.report_name === "Accounts Receivable") { %}
|
|
||||||
<td style="text-align: right">
|
|
||||||
{%= data[i]["po_no"] %}</td>
|
|
||||||
{% } %}
|
|
||||||
<td style="text-align: right">{%= data[i][("pdc/lc_ref")] %}</td>
|
|
||||||
<td style="text-align: right">{%= format_currency(data[i][("pdc/lc_amount")], data[i]["currency"]) %}</td>
|
|
||||||
<td style="text-align: right">{%= format_currency(data[i][("remaining_balance")], data[i]["currency"]) %}</td>
|
|
||||||
{% } %}
|
|
||||||
{% } else { %}
|
|
||||||
<td></td>
|
|
||||||
{% if(!filters.show_future_payments) { %}
|
|
||||||
<td></td>
|
|
||||||
{% } %}
|
|
||||||
{% if(report.report_name === "Accounts Receivable" && filters.show_sales_person) { %}
|
|
||||||
<td></td>
|
|
||||||
{% } %}
|
|
||||||
<td></td>
|
|
||||||
<td style="text-align: right"><b>{%= __("Total") %}</b></td>
|
|
||||||
<td style="text-align: right">
|
|
||||||
{%= format_currency(data[i]["invoiced_amount"], data[i]["currency"] ) %}</td>
|
|
||||||
|
|
||||||
{% if(!filters.show_future_payments) { %}
|
|
||||||
<td style="text-align: right">
|
|
||||||
{%= format_currency(data[i]["paid_amount"], data[i]["currency"]) %}</td>
|
|
||||||
<td style="text-align: right">{%= report.report_name === "Accounts Receivable" ? format_currency(data[i]["credit_note"], data[i]["currency"]) : format_currency(data[i]["debit_note"], data[i]["currency"]) %} </td>
|
|
||||||
{% } %}
|
|
||||||
<td style="text-align: right">
|
|
||||||
{%= format_currency(data[i]["outstanding_amount"], data[i]["currency"]) %}</td>
|
|
||||||
|
|
||||||
{% if(filters.show_future_payments) { %}
|
|
||||||
{% if(report.report_name === "Accounts Receivable") { %}
|
|
||||||
<td style="text-align: right">
|
|
||||||
{%= data[i][__("Customer LPO")] %}</td>
|
|
||||||
{% } %}
|
|
||||||
<td style="text-align: right">{%= data[i][("pdc/lc_ref")] %}</td>
|
|
||||||
<td style="text-align: right">{%= format_currency(data[i][("pdc/lc_amount")], data[i]["currency"]) %}</td>
|
|
||||||
<td style="text-align: right">{%= format_currency(data[i][("remaining_balance")], data[i]["currency"]) %}</td>
|
|
||||||
{% } %}
|
|
||||||
{% } %}
|
|
||||||
{% } else { %}
|
|
||||||
{% if(data[i][__("Customer")] || data[i][__("Supplier")]|| " ") { %}
|
|
||||||
{% if((data[i][__("Customer")] || data[i][__("Supplier")]) != __("'Total'")) { %}
|
|
||||||
<td>
|
<td>
|
||||||
{% if(!(filters.customer || filters.supplier)) { %}
|
{% if(!(filters.customer || filters.supplier)) { %}
|
||||||
{%= data[i][__("Customer")] || data[i][__("Supplier")] %}
|
{%= data[i]["party"] %}
|
||||||
{% if(data[i][__("Customer Name")] && data[i][__("Customer Name")] != data[i][__("Customer")]) { %}
|
{% if(data[i]["customer_name"] && data[i]["customer_name"] != data[i]["party"]) { %}
|
||||||
<br> {%= data[i][__("Customer Name")] %}
|
<br> {%= data[i]["customer_name"] %}
|
||||||
{% } else if(data[i][__("Supplier Name")] != data[i][__("Supplier")]) { %}
|
{% } else if(data[i]["supplier_name"] != data[i]["party"]) { %}
|
||||||
<br> {%= data[i][__("Supplier Name")] %}
|
<br> {%= data[i]["supplier_name"] %}
|
||||||
{% } %}
|
{% } %}
|
||||||
{% } %}
|
{% } %}
|
||||||
<br>{%= __("Remarks") %}:
|
<div>
|
||||||
{%= data[i][__("Remarks")] %}
|
{% if data[i]["remarks"] %}
|
||||||
|
{%= __("Remarks") %}:
|
||||||
|
{%= data[i]["remarks"] %}
|
||||||
|
{% } %}
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
|
{% } %}
|
||||||
|
|
||||||
|
<td style="text-align: right">
|
||||||
|
{%= format_currency(data[i]["invoiced"], data[i]["currency"]) %}</td>
|
||||||
|
|
||||||
|
{% if(!filters.show_future_payments) { %}
|
||||||
|
<td style="text-align: right">
|
||||||
|
{%= format_currency(data[i]["paid"], data[i]["currency"]) %}</td>
|
||||||
|
<td style="text-align: right">
|
||||||
|
{%= format_currency(data[i]["credit_note"], data[i]["currency"]) %}</td>
|
||||||
|
{% } %}
|
||||||
|
<td style="text-align: right">
|
||||||
|
{%= format_currency(data[i]["outstanding"], data[i]["currency"]) %}</td>
|
||||||
|
|
||||||
|
{% if(filters.show_future_payments) { %}
|
||||||
|
{% if(report.report_name === "Accounts Receivable") { %}
|
||||||
|
<td style="text-align: right">
|
||||||
|
{%= data[i]["po_no"] %}</td>
|
||||||
|
{% } %}
|
||||||
|
<td style="text-align: right">{%= data[i]["future_ref"] %}</td>
|
||||||
|
<td style="text-align: right">{%= format_currency(data[i]["future_amount"], data[i]["currency"]) %}</td>
|
||||||
|
<td style="text-align: right">{%= format_currency(data[i]["remaining_balance"], data[i]["currency"]) %}</td>
|
||||||
|
{% } %}
|
||||||
{% } else { %}
|
{% } else { %}
|
||||||
<td><b>{%= __("Total") %}</b></td>
|
<td></td>
|
||||||
|
{% if(!filters.show_future_payments) { %}
|
||||||
|
<td></td>
|
||||||
|
{% } %}
|
||||||
|
{% if(report.report_name === "Accounts Receivable" && filters.show_sales_person) { %}
|
||||||
|
<td></td>
|
||||||
|
{% } %}
|
||||||
|
<td></td>
|
||||||
|
<td style="text-align: right"><b>{%= __("Total") %}</b></td>
|
||||||
|
<td style="text-align: right">
|
||||||
|
{%= format_currency(data[i]["invoiced"], data[i]["currency"] ) %}</td>
|
||||||
|
|
||||||
|
{% if(!filters.show_future_payments) { %}
|
||||||
|
<td style="text-align: right">
|
||||||
|
{%= format_currency(data[i]["paid"], data[i]["currency"]) %}</td>
|
||||||
|
<td style="text-align: right">{%= format_currency(data[i]["credit_note"], data[i]["currency"]) %} </td>
|
||||||
|
{% } %}
|
||||||
|
<td style="text-align: right">
|
||||||
|
{%= format_currency(data[i]["outstanding"], data[i]["currency"]) %}</td>
|
||||||
|
|
||||||
|
{% if(filters.show_future_payments) { %}
|
||||||
|
{% if(report.report_name === "Accounts Receivable") { %}
|
||||||
|
<td style="text-align: right">
|
||||||
|
{%= data[i]["po_no"] %}</td>
|
||||||
|
{% } %}
|
||||||
|
<td style="text-align: right">{%= data[i]["future_ref"] %}</td>
|
||||||
|
<td style="text-align: right">{%= format_currency(data[i]["future_amount"], data[i]["currency"]) %}</td>
|
||||||
|
<td style="text-align: right">{%= format_currency(data[i]["remaining_balance"], data[i]["currency"]) %}</td>
|
||||||
|
{% } %}
|
||||||
|
{% } %}
|
||||||
|
{% } else { %}
|
||||||
|
{% if(data[i]["party"]|| " ") { %}
|
||||||
|
{% if((data[i]["party"]) != __("'Total'")) { %}
|
||||||
|
<td>
|
||||||
|
{% if(!(filters.customer || filters.supplier)) { %}
|
||||||
|
{%= data[i]["party"] %}
|
||||||
|
{% if(data[i]["customer_name"] && data[i]["customer_name"] != data[i]["party"]) { %}
|
||||||
|
<br> {%= data[i]["customer_name"] %}
|
||||||
|
{% } else if(data[i]["supplier_name"] != data[i]["party"]) { %}
|
||||||
|
<br> {%= data[i]["supplier_name"] %}
|
||||||
|
{% } %}
|
||||||
|
{% } %}
|
||||||
|
<br>{%= __("Remarks") %}:
|
||||||
|
{%= data[i]["remarks"] %}
|
||||||
|
</td>
|
||||||
|
{% } else { %}
|
||||||
|
<td><b>{%= __("Total") %}</b></td>
|
||||||
|
{% } %}
|
||||||
|
<td style="text-align: right">{%= format_currency(data[i]["invoiced"], data[i]["currency"]) %}</td>
|
||||||
|
<td style="text-align: right">{%= format_currency(data[i]["paid"], data[i]["currency"]) %}</td>
|
||||||
|
<td style="text-align: right">{%= format_currency(data[i]["credit_note"], data[i]["currency"]) %}</td>
|
||||||
|
<td style="text-align: right">{%= format_currency(data[i]["outstanding"], data[i]["currency"]) %}</td>
|
||||||
{% } %}
|
{% } %}
|
||||||
<td style="text-align: right">{%= format_currency(data[i][("total_invoiced_amt")], data[i]["currency"]) %}</td>
|
|
||||||
<td style="text-align: right">{%= format_currency(data[i][("total_paid_amt")], data[i]["currency"]) %}</td>
|
|
||||||
<td style="text-align: right">{%= report.report_name === "Accounts Receivable Summary" ? format_currency(data[i][__("credit_note_amt")], data[i]["currency"]) : format_currency(data[i][__("debit_note_amt")], data[i]["currency"]) %}</td>
|
|
||||||
<td style="text-align: right">{%= format_currency(data[i][("total_outstanding_amt")], data[i]["currency"]) %}</td>
|
|
||||||
{% } %}
|
{% } %}
|
||||||
|
</tr>
|
||||||
{% } %}
|
{% } %}
|
||||||
</tr>
|
</tbody>
|
||||||
{% } %}
|
</table>
|
||||||
</tbody>
|
<p class="text-right text-muted">{{ __("Printed On ") }}{%= frappe.datetime.str_to_user(frappe.datetime.get_datetime_as_string()) %}</p>
|
||||||
</table>
|
|
||||||
<p class="text-right text-muted">{{ __("Printed On ") }}{%= frappe.datetime.str_to_user(frappe.datetime.get_datetime_as_string()) %}</p>
|
|
||||||
|
Loading…
Reference in New Issue
Block a user