Skip to content

Commit

Permalink
fix: broken advance field in Accounts Receivable summary rpt
Browse files Browse the repository at this point in the history
(cherry picked from commit 896b123)
  • Loading branch information
ruthra-kumar authored and mergify[bot] committed Aug 21, 2023
1 parent fe78076 commit 296a4d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erpnext/accounts/party.py
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@ def get_partywise_advanced_payment_amount(
if party:
query = query.where(gle.party == party)

data = query.run(as_dict=True)
data = query.run()
if data:
return frappe._dict(data)

Expand Down

0 comments on commit 296a4d7

Please sign in to comment.