[IMP] base_action_rule: improve field labels

bzr revid: rco@openerp.com-20121221103233-lllh3c5f1azuffc7
This commit is contained in:
Raphael Collet 2012-12-21 11:32:33 +01:00
parent fed5651f1c
commit 306267ef55
1 changed files with 4 additions and 5 deletions

View File

@ -86,15 +86,14 @@ class base_action_rule(osv.osv):
('day', 'Days'), ('month', 'Months')], 'Delay type'),
'act_user_id': fields.many2one('res.users', 'Set Responsible to'),
'act_followers': fields.many2many("res.partner", string="Set Followers"),
'server_action_ids': fields.many2many('ir.actions.server',
'server_action_ids': fields.many2many('ir.actions.server', string='Server Actions',
domain="[('model_id', '=', model_id)]",
string='Server Action',
help="Example: email reminders, call object service, etc."),
'filter_pre_id': fields.many2one('ir.filters', string='Before Filter',
help="Examples: email reminders, call object service, etc."),
'filter_pre_id': fields.many2one('ir.filters', string='Before Update Filter',
ondelete='restrict',
domain="[('model_id', '=', model_id.model)]",
help="If present, this condition must be satisfied before the update of the record."),
'filter_id': fields.many2one('ir.filters', string='After Filter',
'filter_id': fields.many2one('ir.filters', string='After Update Filter',
ondelete='restrict',
domain="[('model_id', '=', model_id.model)]",
help="If present, this condition must be satisfied after the update of the record."),