diff --git a/erpnext/accounts/report/general_ledger/general_ledger.html b/erpnext/accounts/report/general_ledger/general_ledger.html
index 378fa3791c18..c04f518d7e6c 100644
--- a/erpnext/accounts/report/general_ledger/general_ledger.html
+++ b/erpnext/accounts/report/general_ledger/general_ledger.html
@@ -52,22 +52,22 @@
{% } %}
- {%= format_currency(data[i].debit, filters.presentation_currency) %} |
+ {%= format_currency(data[i].debit, filters.presentation_currency || data[i].account_currency) %}
- {%= format_currency(data[i].credit, filters.presentation_currency) %} |
+ {%= format_currency(data[i].credit, filters.presentation_currency || data[i].account_currency) %}
{% } else { %}
|
|
{%= frappe.format(data[i].account, {fieldtype: "Link"}) || " " %} |
- {%= data[i].account && format_currency(data[i].debit, filters.presentation_currency) %}
+ {%= data[i].account && format_currency(data[i].debit, filters.presentation_currency || data[i].account_currency) %}
|
- {%= data[i].account && format_currency(data[i].credit, filters.presentation_currency) %}
+ {%= data[i].account && format_currency(data[i].credit, filters.presentation_currency || data[i].account_currency) %}
|
{% } %}
- {%= format_currency(data[i].balance, filters.presentation_currency) %}
+ {%= format_currency(data[i].balance, filters.presentation_currency || data[i].account_currency) %}
|
{% } %}