[IMP] portal_crm: overwrite error message to portal managment

bzr revid: chm@openerp.com-20130517104754-n13kq2cg3e1msta7
This commit is contained in:
Christophe Matthieu 2013-05-17 12:47:54 +02:00
parent 47998aee0d
commit 14308b8c92
3 changed files with 67 additions and 0 deletions

View File

@ -20,3 +20,4 @@
##############################################################################
import contact
import wizard

View File

@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2011 OpenERP S.A (<http://www.openerp.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import portal_wizard
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -0,0 +1,41 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2011 OpenERP S.A (<http://www.openerp.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import logging
from openerp.osv import osv
from openerp.tools.translate import _
_logger = logging.getLogger(__name__)
class wizard_user(osv.osv_memory):
_inherit = 'portal.wizard.user'
def action_apply(self, cr, uid, ids, context=None):
try:
return super(wizard_user, self).action_apply(cr, uid, ids, context)
except osv.except_osv, e:
raise osv.except_osv(e[0], "%s\n\n%s" % (e[1], _("To resolve this error, you can:\
Change and use an other contact's email adresse; \
Select other contacts; \
Use the partner merge action (more option of the contacts list) to merge the identical partners.")))
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: