[IMP] auditrails : improved tooltip

bzr revid: vir@tinyerp.com-20100921062411-w7z3umutvjwgq3n7
This commit is contained in:
Vir (Open ERP) 2010-09-21 11:54:11 +05:30
parent c47d6959b8
commit 76ca2a7134
1 changed files with 6 additions and 6 deletions

View File

@ -38,12 +38,12 @@ class audittrail_rule(osv.osv):
"object_id": fields.many2one('ir.model', 'Object', required=True, help="Select object for which you want to generate log."),
"user_id": fields.many2many('res.users', 'audittail_rules_users',
'user_id', 'rule_id', 'Users', help="if User is not added then it will applicable for all users"),
"log_read": fields.boolean("Log Reads", help="If this field is check then open record's log will be generated."),
"log_write": fields.boolean("Log Writes", help="If this field is check then modified record's log will be generated."),
"log_unlink": fields.boolean("Log Deletes", help="If this field is check then delete record's log will be generated."),
"log_create": fields.boolean("Log Creates",help="If this field is check then newly created Record's log will be generated."),
"log_action": fields.boolean("Log Action",help="If this field is check then activate action's log will be generated."),
"log_workflow": fields.boolean("Log Workflow",help="If this field is check then define workflow's log will be generated."),
"log_read": fields.boolean("Log Reads", help="Select this if you want to keep track of read/open on any record of the object of this rule"),
"log_write": fields.boolean("Log Writes", help="Select this if you want to keep track of modification on any record of the object of this rule"),
"log_unlink": fields.boolean("Log Deletes", help="Select this if you want to keep track of deletion on any record of the object of this rule"),
"log_create": fields.boolean("Log Creates",help="Select this if you want to keep track of creation on any record of the object of this rule"),
"log_action": fields.boolean("Log Action",help="Select this if you want to keep track of actions on the object of this rule"),
"log_workflow": fields.boolean("Log Workflow",help="Select this if you want to keep track of workflow on any record of the object of this rule"),
"state": fields.selection((("draft", "Draft"),
("subscribed", "Subscribed")),
"State", required=True),