fix: Unable to see parties with negative balance in AR/AP Summary (#19776)

This commit is contained in:
Deepesh Garg 2019-12-03 15:12:44 +05:30 committed by Nabin Hait
parent c68a940aac
commit 03d1394540

View File

@ -36,7 +36,7 @@ class AccountsReceivableSummary(ReceivablePayableReport):
self.filters.report_date) or {}
for party, party_dict in iteritems(self.party_total):
if party_dict.outstanding <= 0:
if party_dict.outstanding == 0:
continue
row = frappe._dict()