commit | 03d1394540b11b7cc7f242c662cbd0d117a883dc | [log] [tgz] |
---|---|---|
author | Deepesh Garg <42651287+deepeshgarg007@users.noreply.github.com> | Tue Dec 03 15:12:44 2019 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Tue Dec 03 15:12:44 2019 +0530 |
tree | 33b01ee9ee77e6874c6c7f252c63582a6392ae45 | |
parent | c68a940aac30e21347731894ed26ffaf1355e513 [diff] |
fix: Unable to see parties with negative balance in AR/AP Summary (#19776)
diff --git a/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py b/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py index 8955830..b607c0f 100644 --- a/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py +++ b/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py
@@ -36,7 +36,7 @@ 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()