[IMP] improved create msg.

bzr revid: tpa@tinyerp.com-20140103070303-nec0nb3l1ivzq90g
This commit is contained in:
Turkesh Patel (Open ERP) 2014-01-03 12:33:03 +05:30
parent 54a4995a4a
commit 6a2a2e75c5
1 changed files with 3 additions and 0 deletions

View File

@ -968,6 +968,9 @@ class crm_lead(format_address, osv.osv):
def get_empty_list_help(self, cr, uid, help, context=None):
context['empty_list_help_model'] = 'crm.case.section'
context['empty_list_help_id'] = context.get('default_section_id', None)
context['empty_list_help_document_name'] = _("opportunity")
if context.get('default_type') == 'lead':
context['empty_list_help_document_name'] = _("lead")
return super(crm_lead, self).get_empty_list_help(cr, uid, help, context=context)
# ----------------------------------------