sebalix
8 years ago
committed by
Enric Tobella
No known key found for this signature in database
GPG Key ID: 1A2546A1B7BA2451
2 changed files with
4 additions and
4 deletions
-
auditlog/models/http_request.py
-
auditlog/models/http_session.py
|
|
@ -12,7 +12,7 @@ class AuditlogHTTPRequest(models.Model): |
|
|
|
_order = "create_date DESC" |
|
|
|
_rec_name = 'display_name' |
|
|
|
|
|
|
|
display_name = fields.Char(u"Name", compute="_display_name") |
|
|
|
display_name = fields.Char(u"Name", compute="_compute_display_name") |
|
|
|
name = fields.Char(u"Path") |
|
|
|
root_url = fields.Char(u"Root URL") |
|
|
|
user_id = fields.Many2one( |
|
|
@ -24,7 +24,7 @@ class AuditlogHTTPRequest(models.Model): |
|
|
|
'auditlog.log', 'http_request_id', string=u"Logs") |
|
|
|
|
|
|
|
@api.multi |
|
|
|
def _display_name(self): |
|
|
|
def _compute_display_name(self): |
|
|
|
for httprequest in self: |
|
|
|
create_date = fields.Datetime.from_string(httprequest.create_date) |
|
|
|
tz_create_date = fields.Datetime.context_timestamp( |
|
|
|
|
|
@ -12,7 +12,7 @@ class AuditlogtHTTPSession(models.Model): |
|
|
|
_order = "create_date DESC" |
|
|
|
_rec_name = 'display_name' |
|
|
|
|
|
|
|
display_name = fields.Char(u"Name", compute="_display_name") |
|
|
|
display_name = fields.Char(u"Name", compute="_compute_display_name") |
|
|
|
name = fields.Char(u"Session ID", index=True) |
|
|
|
user_id = fields.Many2one( |
|
|
|
'res.users', string=u"User", index=True) |
|
|
@ -20,7 +20,7 @@ class AuditlogtHTTPSession(models.Model): |
|
|
|
'auditlog.http.request', 'http_session_id', string=u"HTTP Requests") |
|
|
|
|
|
|
|
@api.multi |
|
|
|
def _display_name(self): |
|
|
|
def _compute_display_name(self): |
|
|
|
for httpsession in self: |
|
|
|
create_date = fields.Datetime.from_string(httpsession.create_date) |
|
|
|
tz_create_date = fields.Datetime.context_timestamp( |
|
|
|