[IMP] ignore rules for nonexisting objects
parent
af0f5d1a61
commit
cc83f8b54d
|
@ -123,6 +123,9 @@ class auditlog_rule(models.Model):
|
|||
for rule in self:
|
||||
if rule.state != 'subscribed':
|
||||
continue
|
||||
if not self.pool.get(rule.model_id.model):
|
||||
# ignore rules for models not loadable currently
|
||||
continue
|
||||
model_model = self.env[rule.model_id.model]
|
||||
# CRUD
|
||||
# -> create
|
||||
|
|
Loading…
Reference in New Issue