diff --git a/erpnext/accounts/report/accounts_receivable/accounts_receivable.html b/erpnext/accounts/report/accounts_receivable/accounts_receivable.html
index 390bb27fd5c..16921799635 100644
--- a/erpnext/accounts/report/accounts_receivable/accounts_receivable.html
+++ b/erpnext/accounts/report/accounts_receivable/accounts_receivable.html
@@ -55,12 +55,12 @@
|
{%= __("Total") %} |
- {%= format_currency(data[i]["Invoiced Amount"]) %} |
+ {%= format_currency(data[i]["Invoiced Amount"], data[i]["currency"] ) %}
- {%= format_currency(data[i]["Paid Amount"]) %} |
- {% report.report_name === "Accounts Receivable" ? format_currency(data[i][__("Credit Note Amt")]) : format_currency(data[i][__("Debit Note Amt")]) %} |
+ {%= format_currency(data[i]["Paid Amount"], data[i]["currency"]) %}
+ {% report.report_name === "Accounts Receivable" ? format_currency(data[i][__("Credit Note Amt")], data[i]["currency"]) : format_currency(data[i][__("Debit Note Amt")], data[i]["currency"]) %} |
- {%= format_currency(data[i]["Outstanding Amount"]) %} |
+ {%= format_currency(data[i]["Outstanding Amount"], data[i]["currency"]) %}
{% } %}
{% } else { %}
{% if(data[i][__("Customer")] || data[i][__("Supplier")]|| " ") { %}
@@ -70,10 +70,10 @@
{% } else { %}
{%= __("Total") %} |
{% } %}
- {%= format_currency(data[i][__("Total Invoiced Amt")]) %} |
- {%= format_currency(data[i][__("Total Paid Amt")]) %} |
- {%= report.report_name === "Accounts Receivable Summary" ? format_currency(data[i][__("Credit Note Amt")]) : format_currency(data[i][__("Debit Note Amt")]) %} |
- {%= format_currency(data[i][__("Total Outstanding Amt")]) %} |
+ {%= format_currency(data[i][__("Total Invoiced Amt")], data[i]["currency"]) %} |
+ {%= format_currency(data[i][__("Total Paid Amt")], data[i]["currency"]) %} |
+ {%= 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"]) %} |
+ {%= format_currency(data[i][__("Total Outstanding Amt")], data[i]["currency"]) %} |
{% } %}
{% } %}