You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
4.4 KiB
101 lines
4.4 KiB
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# Base Phone module for Odoo
|
|
# Copyright (C) 2012-2015 Alexis de Lattre <alexis@via.ecp.fr>
|
|
#
|
|
# 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/>.
|
|
#
|
|
##############################################################################
|
|
|
|
from openerp import models, fields, api
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class ReformatAllPhonenumbers(models.TransientModel):
|
|
_name = "reformat.all.phonenumbers"
|
|
_inherit = "res.config.installer"
|
|
_description = "Reformat all phone numbers"
|
|
|
|
phonenumbers_not_reformatted = fields.Text(
|
|
string="Phone numbers that couldn't be reformatted")
|
|
state = fields.Selection([
|
|
('draft', 'Draft'),
|
|
('done', 'Done'),
|
|
], string='State', default='draft')
|
|
|
|
@api.multi
|
|
def run_reformat_all_phonenumbers(self):
|
|
self.ensure_one()
|
|
logger.info('Starting to reformat all the phone numbers')
|
|
phonenumbers_not_reformatted = u''
|
|
phoneobjects = self.env['phone.common']._get_phone_fields()
|
|
for objname in phoneobjects:
|
|
fields = self.env[objname]._phone_fields
|
|
obj = self.env[objname]
|
|
logger.info(
|
|
'Starting to reformat phone numbers on object %s '
|
|
'(fields = %s)', objname, fields)
|
|
# search if this object has an 'active' field
|
|
if obj._columns.get('active') or objname == 'hr.employee':
|
|
# hr.employee inherits from 'resource.resource' and
|
|
# 'resource.resource' has an active field
|
|
# As I don't know how to detect such cases, I hardcode it here
|
|
# If you know a better solution, please tell me
|
|
domain = ['|', ('active', '=', True), ('active', '=', False)]
|
|
else:
|
|
domain = []
|
|
all_entries = obj.search(domain)
|
|
|
|
for entry in all_entries:
|
|
init_entry_vals = {}
|
|
for field in fields:
|
|
init_entry_vals[field] = entry[field]
|
|
entry_vals = init_entry_vals.copy()
|
|
# entry is _updated_ by the fonction
|
|
# _generic_reformat_phonenumbers()
|
|
try:
|
|
entry.with_context(raise_if_phone_parse_fails=True).\
|
|
_reformat_phonenumbers_write(entry_vals)
|
|
except Exception, e:
|
|
name = entry.name_get()[0][1]
|
|
phonenumbers_not_reformatted += \
|
|
"Problem on %s '%s'. Error message: %s\n" % (
|
|
obj._description, name, unicode(e))
|
|
logger.warning(
|
|
"Problem on %s '%s'. Error message: %s",
|
|
obj._description, name, unicode(e))
|
|
continue
|
|
if any([
|
|
init_entry_vals.get(field) != entry_vals.get(field) for
|
|
field in fields]):
|
|
logger.info(
|
|
'[%s] Reformating phone number: FROM %s TO %s',
|
|
obj._description, unicode(init_entry_vals),
|
|
unicode(entry_vals))
|
|
entry.write(entry_vals)
|
|
if not phonenumbers_not_reformatted:
|
|
phonenumbers_not_reformatted = \
|
|
'All phone numbers have been reformatted successfully.'
|
|
self.write({
|
|
'phonenumbers_not_reformatted': phonenumbers_not_reformatted,
|
|
'state': 'done',
|
|
})
|
|
logger.info('End of the phone number reformatting wizard')
|
|
action = self.env['ir.actions.act_window'].for_xml_id(
|
|
'base_phone', 'reformat_all_phonenumbers_action')
|
|
action['res_id'] = self.id
|
|
return action
|