mirror of
https://gitlab.com/flectra-community/mis-builder.git
synced 2024-11-16 11:12:07 +00:00
[FIX] mis_builder: ignore float_is_zero error
This commit is contained in:
parent
5b36489d85
commit
a6f8c9c307
@ -73,7 +73,10 @@ class KpiMatrixRow(object):
|
||||
def is_empty(self):
|
||||
for cell in self.iter_cells():
|
||||
dp = cell and cell.row.kpi.env.user.company_id.currency_id.decimal_places or 6
|
||||
if cell and not float_is_zero(cell.val, dp) and cell.val not in (AccountingNone, None):
|
||||
try:
|
||||
if cell and not float_is_zero(cell.val, dp) and cell.val not in (AccountingNone, None):
|
||||
return False
|
||||
except Exception:
|
||||
return False
|
||||
return True
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user