Browse Source
[IMP] ignore rules for nonexisting objects
pull/1040/head
Holger Brunn
10 years ago
committed by
Enric Tobella
No known key found for this signature in database
GPG Key ID: 1A2546A1B7BA2451
1 changed files with
3 additions and
0 deletions
-
auditlog/models/rule.py
|
|
@ -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 |
|
|
|