123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- from openerp import models, fields
- import logging
- logger = logging.getLogger(__name__)
- class reformat_all_phonenumbers(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')
- def run_reformat_all_phonenumbers(self, cr, uid, ids, context=None):
- logger.info('Starting to reformat all the phone numbers')
- phonenumbers_not_reformatted = ''
- phoneobjects = self.pool['phone.common']._get_phone_fields(
- cr, uid, context=context)
- ctx_raise = dict(context, raise_if_phone_parse_fails=True)
- for objname in phoneobjects:
- fields = self.pool[objname]._phone_fields
- obj = self.pool[objname]
- logger.info(
- 'Starting to reformat phone numbers on object %s '
- '(fields = %s)' % (objname, fields))
-
- if obj._columns.get('active') or objname == 'hr.employee':
-
-
-
-
- domain = ['|', ('active', '=', True), ('active', '=', False)]
- else:
- domain = []
- all_ids = obj.search(cr, uid, domain, context=context)
- for entry in obj.read(
- cr, uid, all_ids, fields, context=context):
- init_entry = entry.copy()
-
-
- try:
- obj._generic_reformat_phonenumbers(
- cr, uid, [entry['id']], entry, context=ctx_raise)
- except Exception, e:
- name = obj.name_get(
- cr, uid, [init_entry['id']], context=context)[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.get(field) != entry.get(field) for
- field in fields]):
- entry.pop('id')
- logger.info(
- '[%s] Reformating phone number: FROM %s TO %s' % (
- obj._description, unicode(init_entry),
- unicode(entry)))
- obj.write(
- cr, uid, init_entry['id'], entry, context=context)
- if not phonenumbers_not_reformatted:
- phonenumbers_not_reformatted = \
- 'All phone numbers have been reformatted successfully.'
- self.write(
- cr, uid, ids[0], {
- 'phonenumbers_not_reformatted': phonenumbers_not_reformatted,
- 'state': 'done',
- }, context=context)
- logger.info('End of the phone number reformatting wizard')
- action = self.pool['ir.actions.act_window'].for_xml_id(
- cr, uid, 'base_phone', 'reformat_all_phonenumbers_action',
- context=context)
- action['res_id'] = ids[0]
- return action
|