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

This commit is contained in:
Deepesh Garg
2019-12-03 15:12:28 +05:30
committed by Nabin Hait
parent 0e1ef35968
commit 485d48c101

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()