mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-07 07:02:54 +00:00
[Fix] Account currency not fetched on selection of party in journale entry
This commit is contained in:
@@ -760,7 +760,8 @@ def get_party_account_and_balance(company, party_type, party):
|
|||||||
return {
|
return {
|
||||||
"account": account,
|
"account": account,
|
||||||
"balance": account_balance,
|
"balance": account_balance,
|
||||||
"party_balance": party_balance
|
"party_balance": party_balance,
|
||||||
|
"account_currency": frappe.db.get_value("Account", account, "account_currency")
|
||||||
}
|
}
|
||||||
|
|
||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
|
|||||||
Reference in New Issue
Block a user