[Fix] crm: cannot save new lead after have duplicated it

lp bug: https://launchpad.net/bugs/691006 fixed

bzr revid: sbh@tinyerp.com-20101217082214-9y3my5ytb3mfotnv
This commit is contained in:
Sbh (OpenERP) 2010-12-17 13:52:14 +05:30
parent fd9290d4e2
commit 1cf0cba464
1 changed files with 1 additions and 0 deletions

View File

@ -302,6 +302,7 @@ class crm_lead(crm_case, osv.osv):
if 'stage_id' in vals and vals['stage_id']:
stage_obj = self.pool.get('crm.case.stage').browse(cr, uid, vals['stage_id'], context=context)
self.history(cr, uid, ids, _('Stage'), details=stage_obj.name)
message=''
for case in self.browse(cr, uid, ids, context=context):
if case.type == 'lead':
message = _("The stage of lead '%s' has been changed to '%s'.") % (case.name, case.stage_id.name)