|
@ -26,10 +26,14 @@ class wizard_user(osv.TransientModel): |
|
|
_inherit = 'portal.wizard.user' |
|
|
_inherit = 'portal.wizard.user' |
|
|
|
|
|
|
|
|
def get_error_messages(self, cr, uid, ids, context=None): |
|
|
def get_error_messages(self, cr, uid, ids, context=None): |
|
|
error_msg = super(wizard_user, self).get_error_messages(cr, uid, ids, context) |
|
|
|
|
|
|
|
|
error_msg = super(wizard_user, self |
|
|
|
|
|
).get_error_messages(cr, uid, ids, context=context) |
|
|
if error_msg: |
|
|
if error_msg: |
|
|
error_msg[-1] = '%s\n%s' % (error_msg[-1], _("- Merge existing contacts together using the Automatic Merge wizard, " |
|
|
|
|
|
"available in the More menu after selecting several contacts in the Customers list")) |
|
|
|
|
|
|
|
|
error_msg[-1] = '%s\n%s' % ( |
|
|
|
|
|
error_msg[-1], |
|
|
|
|
|
_("- Merge existing contacts together using the Automatic " |
|
|
|
|
|
"Merge wizard, available in the More menu after selecting " |
|
|
|
|
|
"several contacts in the Customers list")) |
|
|
return error_msg |
|
|
return error_msg |
|
|
|
|
|
|
|
|
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: |
|
|
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: |