mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-24 07:29:22 +00:00
Merge pull request #47631 from frappe/mergify/bp/version-15-hotfix/pr-47629
fix: date formatting in process_statement_of_accounts accounts_receivable print format (backport #47629)
This commit is contained in:
@@ -211,7 +211,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
{% if(report.report_name == "Accounts Receivable" or report.report_name == "Accounts Payable") %}
|
{% if(report.report_name == "Accounts Receivable" or report.report_name == "Accounts Payable") %}
|
||||||
{% if(data[i]["party"]) %}
|
{% if(data[i]["party"]) %}
|
||||||
<td>{{ (data[i]["posting_date"]) }}</td>
|
<td>{{ frappe.format((data[i]["posting_date"]), 'Date') }}</td>
|
||||||
<td style="text-align: right">{{ data[i]["age"] }}</td>
|
<td style="text-align: right">{{ data[i]["age"] }}</td>
|
||||||
<td>
|
<td>
|
||||||
{% if not(filters.show_future_payments) %}
|
{% if not(filters.show_future_payments) %}
|
||||||
|
|||||||
Reference in New Issue
Block a user