We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46b6d4e commit 2f9703cCopy full SHA for 2f9703c
erpnext/accounts/report/general_ledger/general_ledger.py
@@ -66,7 +66,8 @@ def set_account_currency(filters):
66
if gle_currency:
67
account_currency = gle_currency
68
else:
69
- account_currency = frappe.db.get_value(filters.party_type, filters.party, "default_currency")
+ account_currency = None if filters.party_type == "Employee" else \
70
+ frappe.db.get_value(filters.party_type, filters.party, "default_currency")
71
72
filters["account_currency"] = account_currency or filters.company_currency
73
0 commit comments