refactor: handle rounding loss on AR/AP reports
(cherry picked from commit 592ce45da7659dcf4ca148f5924dbe0d783956bf)
This commit is contained in:
parent
4699887f1c
commit
8564d58afe
@ -281,8 +281,8 @@ class ReceivablePayableReport(object):
|
|||||||
|
|
||||||
must_consider = False
|
must_consider = False
|
||||||
if self.filters.get("for_revaluation_journals"):
|
if self.filters.get("for_revaluation_journals"):
|
||||||
if (abs(row.outstanding) > 1.0 / 10**self.currency_precision) or (
|
if (abs(row.outstanding) > 0.0 / 10**self.currency_precision) or (
|
||||||
(abs(row.outstanding_in_account_currency) > 1.0 / 10**self.currency_precision)
|
(abs(row.outstanding_in_account_currency) > 0.0 / 10**self.currency_precision)
|
||||||
):
|
):
|
||||||
must_consider = True
|
must_consider = True
|
||||||
else:
|
else:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user