[IMP] use new import of _, SUPERUSER_ID
parent
7474a0e466
commit
57834ae3a7
|
@ -19,8 +19,7 @@
|
||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
from openerp import models, fields, api, modules
|
from openerp import models, fields, api, modules, _, SUPERUSER_ID
|
||||||
from openerp.tools.translate import _
|
|
||||||
|
|
||||||
FIELDS_BLACKLIST = [
|
FIELDS_BLACKLIST = [
|
||||||
'id', 'create_uid', 'create_date', 'write_uid', 'write_date',
|
'id', 'create_uid', 'create_date', 'write_uid', 'write_date',
|
||||||
|
@ -113,8 +112,8 @@ class auditlog_rule(models.Model):
|
||||||
"""Get all rules and apply them to log method calls."""
|
"""Get all rules and apply them to log method calls."""
|
||||||
super(auditlog_rule, self)._register_hook(cr)
|
super(auditlog_rule, self)._register_hook(cr)
|
||||||
if ids is None:
|
if ids is None:
|
||||||
ids = self.search(cr, 1, [('state', '=', 'subscribed')])
|
ids = self.search(cr, SUPERUSER_ID, [('state', '=', 'subscribed')])
|
||||||
return self._patch_methods(cr, 1, ids)
|
return self._patch_methods(cr, SUPERUSER_ID, ids)
|
||||||
|
|
||||||
@api.multi
|
@api.multi
|
||||||
def _patch_methods(self):
|
def _patch_methods(self):
|
||||||
|
|
Loading…
Reference in New Issue