mirror of
https://gitlab.com/flectra-community/mis-builder.git
synced 2024-11-16 19:22:04 +00:00
[FIX] mis_builder: ignore float_is_zero error
This commit is contained in:
parent
fdfeedc5aa
commit
e010e48f86
@ -73,7 +73,10 @@ class KpiMatrixRow(object):
|
|||||||
def is_empty(self):
|
def is_empty(self):
|
||||||
for cell in self.iter_cells():
|
for cell in self.iter_cells():
|
||||||
dp = cell and cell.row.kpi.env.user.company_id.currency_id.decimal_places or 6
|
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 False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user