mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-18 17:55:40 +00:00
Merge pull request #33055 from frappe/mergify/bp/version-14-hotfix/pr-33052
fix: Viewing account ledger from party master (backport #33052)
This commit is contained in:
@@ -121,7 +121,7 @@ def set_account_currency(filters):
|
||||
if is_same_account_currency:
|
||||
account_currency = currency
|
||||
|
||||
elif filters.get("party"):
|
||||
elif filters.get("party") and filters.get("party_type"):
|
||||
gle_currency = frappe.db.get_value(
|
||||
"GL Entry",
|
||||
{"party_type": filters.party_type, "party": filters.party[0], "company": filters.company},
|
||||
@@ -134,7 +134,7 @@ def set_account_currency(filters):
|
||||
account_currency = (
|
||||
None
|
||||
if filters.party_type in ["Employee", "Shareholder", "Member"]
|
||||
else frappe.db.get_value(filters.party_type, filters.party[0], "default_currency")
|
||||
else frappe.get_cached_value(filters.party_type, filters.party[0], "default_currency")
|
||||
)
|
||||
|
||||
filters["account_currency"] = account_currency or filters.company_currency
|
||||
|
||||
Reference in New Issue
Block a user