Browse Source
[IMP] Module 'auditlog' - Clean up vim lines
pull/1040/head
sebalix
10 years ago
committed by
Enric Tobella
No known key found for this signature in database
GPG Key ID: 1A2546A1B7BA2451
5 changed files with
0 additions and
10 deletions
-
auditlog/__init__.py
-
auditlog/__openerp__.py
-
auditlog/models/__init__.py
-
auditlog/models/log.py
-
auditlog/models/rule.py
|
|
@ -20,5 +20,3 @@ |
|
|
|
############################################################################## |
|
|
|
|
|
|
|
from . import models |
|
|
|
|
|
|
|
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: |
|
|
@ -36,5 +36,3 @@ |
|
|
|
'installable': True, |
|
|
|
'active': False, |
|
|
|
} |
|
|
|
|
|
|
|
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: |
|
|
@ -21,5 +21,3 @@ |
|
|
|
|
|
|
|
from . import rule |
|
|
|
from . import log |
|
|
|
|
|
|
|
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: |
|
|
@ -56,5 +56,3 @@ class auditlog_log_line(models.Model): |
|
|
|
new_value_text = fields.Text(u"New value Text") |
|
|
|
field_name = fields.Char(u"Technical name", size=64) |
|
|
|
field_description = fields.Char(u"Description", size=64) |
|
|
|
|
|
|
|
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: |
|
|
@ -428,5 +428,3 @@ class auditlog_rule(models.Model): |
|
|
|
ir_value.unlink() |
|
|
|
self.write({'state': 'draft'}) |
|
|
|
return True |
|
|
|
|
|
|
|
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: |