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
  • Loading branch information
ruthra-kumar committed Aug 20, 2023
1 parent 98adfb4 commit 896b123
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 @@ -950,7 +950,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 896b123

Please sign in to comment.