From fd65b57b08fe129fd2124e657559f6d33ca31d74 Mon Sep 17 00:00:00 2001 From: Jusab Sida Date: Fri, 17 Jul 2015 16:29:23 +0530 Subject: [PATCH] [IMP] sales_team: fix the help message of the active field. Try not to tell the opposite of the actual behavior. --- addons/sales_team/sales_team.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/sales_team/sales_team.py b/addons/sales_team/sales_team.py index a101a25519d..7d45d1df055 100644 --- a/addons/sales_team/sales_team.py +++ b/addons/sales_team/sales_team.py @@ -68,7 +68,7 @@ class crm_case_section(osv.osv): 'complete_name': fields.function(get_full_name, type='char', size=256, readonly=True, store=True), 'code': fields.char('Code', size=8), 'active': fields.boolean('Active', help="If the active field is set to "\ - "true, it will allow you to hide the sales team without removing it."), + "false, it will allow you to hide the sales team without removing it."), 'change_responsible': fields.boolean('Reassign Escalated', help="When escalating to this team override the salesman with the team leader."), 'user_id': fields.many2one('res.users', 'Team Leader'), 'member_ids': fields.many2many('res.users', 'sale_member_rel', 'section_id', 'member_id', 'Team Members'),