Browse Source
[FIX] ie related fields don't have an
ir.model.fields entry
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
8 additions and
6 deletions
-
auditlog/models/rule.py
|
|
@ -389,6 +389,7 @@ class auditlog_rule(models.Model): |
|
|
|
if field_name in FIELDS_BLACKLIST: |
|
|
|
continue |
|
|
|
field = self._get_field(log.model_id, field_name) |
|
|
|
if field: |
|
|
|
log_vals = self._prepare_log_line_vals_on_write( |
|
|
|
log, field, old_values, new_values) |
|
|
|
log_line_model.create(log_vals) |
|
|
@ -434,6 +435,7 @@ class auditlog_rule(models.Model): |
|
|
|
if field_name in FIELDS_BLACKLIST: |
|
|
|
continue |
|
|
|
field = self._get_field(log.model_id, field_name) |
|
|
|
if field: |
|
|
|
log_vals = self._prepare_log_line_vals_on_create( |
|
|
|
log, field, new_values) |
|
|
|
log_line_model.create(log_vals) |
|
|
|