mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-17 17:26:43 +00:00
fix: AR / AP report to ignore 0.0 outstanding
(cherry picked from commit 6e2cf79e2c)
This commit is contained in:
@@ -310,8 +310,8 @@ class ReceivablePayableReport:
|
|||||||
|
|
||||||
must_consider = False
|
must_consider = False
|
||||||
if self.filters.get("for_revaluation_journals"):
|
if self.filters.get("for_revaluation_journals"):
|
||||||
if (abs(row.outstanding) >= 0.0 / 10**self.currency_precision) or (
|
if (abs(row.outstanding) >= 1.0 / 10**self.currency_precision) or (
|
||||||
abs(row.outstanding_in_account_currency) >= 0.0 / 10**self.currency_precision
|
abs(row.outstanding_in_account_currency) >= 1.0 / 10**self.currency_precision
|
||||||
):
|
):
|
||||||
must_consider = True
|
must_consider = True
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user