From 099d1795f5e63de52bc4fc639fe64e5c9040d475 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Tue, 12 May 2015 00:30:41 +0200 Subject: [PATCH] Backport new cool stuff from 8.0 branch Remove deadfile asterisk_click2dial_event/asterisk_click2dial_registration.py --- .../asterisk_click2dial_registration.py | 39 ---- base_phone/__openerp__.py | 1 + base_phone/base_phone.py | 192 ++++++++++-------- base_phone/res_partner_view.xml | 3 + base_phone/static/src/js/phone_widget.js | 110 +++++----- base_phone/static/src/xml/phone.xml | 6 +- base_phone/test/phonenum.yml | 45 ++++ base_phone/wizard/number_not_found.py | 5 +- .../wizard/reformat_all_phonenumbers.py | 41 ++-- .../wizard/reformat_all_phonenumbers_view.xml | 10 +- crm_claim_phone/crm_claim_phone.py | 19 +- crm_phone/__openerp__.py | 1 + crm_phone/crm_phone.py | 34 +--- crm_phone/test/phonenum.yml | 41 ++++ event_phone/event_phone.py | 21 +- hr_phone/hr_phone.py | 21 +- hr_recruitment_phone/hr_recruitment_phone.py | 21 +- 17 files changed, 336 insertions(+), 274 deletions(-) delete mode 100644 asterisk_click2dial_event/asterisk_click2dial_registration.py create mode 100644 base_phone/test/phonenum.yml create mode 100644 crm_phone/test/phonenum.yml diff --git a/asterisk_click2dial_event/asterisk_click2dial_registration.py b/asterisk_click2dial_event/asterisk_click2dial_registration.py deleted file mode 100644 index 8e6d4a1..0000000 --- a/asterisk_click2dial_event/asterisk_click2dial_registration.py +++ /dev/null @@ -1,39 +0,0 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Asterisk click2dial Registration module for OpenERP -# Copyright (C) 2013 Invitu -# -# 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 . -# -############################################################################## - -from openerp.osv import orm - - -class event_registration(orm.Model): - _name = 'event.registration' - _inherit = ['event.registration', 'phone.common'] - - def create(self, cr, uid, vals, context=None): - vals_reformated = self._generic_reformat_phonenumbers( - cr, uid, vals, context=context) - return super(event_registration, self).create( - cr, uid, vals_reformated, context=context) - - def write(self, cr, uid, ids, vals, context=None): - vals_reformated = self._generic_reformat_phonenumbers( - cr, uid, vals, context=context) - return super(event_registration, self).write( - cr, uid, ids, vals_reformated, context=context) diff --git a/base_phone/__openerp__.py b/base_phone/__openerp__.py index 6a67b64..7510443 100644 --- a/base_phone/__openerp__.py +++ b/base_phone/__openerp__.py @@ -81,6 +81,7 @@ for any help or question about this module. 'qweb': ['static/src/xml/*.xml'], 'demo': ['base_phone_demo.xml'], 'images': [], + 'test': ['test/phonenum.yml'], 'installable': True, 'active': False, } diff --git a/base_phone/base_phone.py b/base_phone/base_phone.py index 73babb8..49c5f9e 100644 --- a/base_phone/base_phone.py +++ b/base_phone/base_phone.py @@ -20,6 +20,7 @@ ############################################################################## from openerp.osv import orm, fields +from openerp.tools.safe_eval import safe_eval from openerp.tools.translate import _ import logging # Lib for phone number reformating -> pip install phonenumbers @@ -31,76 +32,86 @@ _logger = logging.getLogger(__name__) class phone_common(orm.AbstractModel): _name = 'phone.common' - def generic_phonenumber_to_e164( - self, cr, uid, ids, field_from_to_seq, context=None): - result = {} - from_field_seq = [item[0] for item in field_from_to_seq] - for record in self.read(cr, uid, ids, from_field_seq, context=context): - result[record['id']] = {} - for fromfield, tofield in field_from_to_seq: - if not record.get(fromfield): - res = False - else: - try: - res = phonenumbers.format_number( - phonenumbers.parse(record.get(fromfield), None), - phonenumbers.PhoneNumberFormat.E164) - except Exception, e: - _logger.error( - "Cannot reformat the phone number '%s' to E.164 " - "format. Error message: %s" - % (record.get(fromfield), e)) - _logger.error( - "You should fix this number and run the wizard " - "'Reformat all phone numbers' from the menu " - "Settings > Configuration > Phones") - # If I raise an exception here, it won't be possible to - # install the module on a DB with bad phone numbers - res = False - result[record['id']][tofield] = res - return result - - def _generic_reformat_phonenumbers(self, cr, uid, vals, phonefields=None, - context=None): + def _generic_reformat_phonenumbers( + self, cr, uid, ids, vals, context=None): """Reformat phone numbers in E.164 format i.e. +33141981242""" - if phonefields is None: - phonefields = [ - 'phone', 'partner_phone', 'work_phone', 'fax', - 'mobile', 'partner_mobile', 'mobile_phone', - ] - if any([vals.get(field) for field in phonefields]): + assert isinstance(self._country_field, (str, unicode, type(None))),\ + 'Wrong self._country_field' + assert isinstance(self._partner_field, (str, unicode, type(None))),\ + 'Wrong self._partner_field' + assert isinstance(self._phone_fields, list),\ + 'self._phone_fields must be a list' + if context is None: + context = {} + if ids and isinstance(ids, (int, long)): + ids = [ids] + if any([vals.get(field) for field in self._phone_fields]): user = self.pool['res.users'].browse(cr, uid, uid, context=context) # country_id on res.company is a fields.function that looks at # company_id.partner_id.addres(default).country_id - if user.company_id.country_id: - user_countrycode = user.company_id.country_id.code - else: - # We need to raise an exception here because, if we pass None - # as second arg of phonenumbers.parse(), it will raise an - # exception when you try to enter a phone number in - # national format... so it's better to raise the exception here - raise orm.except_orm( - _('Error:'), - _("You should set a country on the company '%s'") - % user.company_id.name) - for field in phonefields: + countrycode = None + if self._country_field: + if vals.get(self._country_field): + country = self.pool['res.country'].browse( + cr, uid, vals[self._country_field], context=context) + countrycode = country.code + elif ids: + rec = self.browse(cr, uid, ids[0], context=context) + country = safe_eval( + 'rec.' + self._country_field, {'rec': rec}) + countrycode = country and country.code or None + elif self._partner_field: + if vals.get(self._partner_field): + partner = self.pool['res.partner'].browse( + cr, uid, vals[self._partner_field], context=context) + countrycode = partner.country_id and\ + partner.country_id.code or None + elif ids: + rec = self.browse(cr, uid, ids[0], context=context) + partner = safe_eval( + 'rec.' + self._partner_field, {'rec': rec}) + if partner: + countrycode = partner.country_id and\ + partner.country_id.code or None + if not countrycode: + if user.company_id.country_id: + countrycode = user.company_id.country_id.code + else: + _logger.error( + _("You should set a country on the company '%s' " + "to allow the reformat of phone numbers") + % user.company_id.name) + countrycode = None + # with country code = None, phonenumbers.parse() will work + # with phonenumbers formatted in E164, but will fail with + # phone numbers in national format + for field in self._phone_fields: if vals.get(field): init_value = vals.get(field) try: res_parse = phonenumbers.parse( - vals.get(field), user_countrycode) + vals.get(field), countrycode) + vals[field] = phonenumbers.format_number( + res_parse, phonenumbers.PhoneNumberFormat.E164) + if init_value != vals[field]: + _logger.info( + "%s initial value: '%s' updated value: '%s'" + % (field, init_value, vals[field])) except Exception, e: - raise orm.except_orm( - _('Error:'), - _("Cannot reformat the phone number '%s' to " - "international format. Error message: %s") - % (vals.get(field), e)) - vals[field] = phonenumbers.format_number( - res_parse, phonenumbers.PhoneNumberFormat.E164) - if init_value != vals[field]: - _logger.info( - "%s initial value: '%s' updated value: '%s'" - % (field, init_value, vals[field])) + # I do BOTH logger and raise, because: + # raise is usefull when the record is created/written + # by a user via the Web interface + # logger is usefull when the record is created/written + # via the webservices + _logger.error( + "Cannot reformat the phone number '%s' to " + "international format with region=%s" + % (vals.get(field), countrycode)) + if context.get('raise_if_phone_parse_fails'): + raise Warning( + _("Cannot reformat the phone number '%s' to " + "international format. Error message: %s") + % (vals.get(field), e)) return vals def get_name_from_phone_number( @@ -144,29 +155,29 @@ class phone_common(orm.AbstractModel): else: end_number_to_match = presented_number - phonefieldsdict = self._get_phone_fields(cr, uid, context=context) - phonefieldslist = [] - for objname, prop in phonefieldsdict.iteritems(): - if prop.get('get_name_sequence'): - phonefieldslist.append({objname: prop}) + phoneobjects = self._get_phone_fields(cr, uid, context=context) + phonefieldslist = [] # [('res.parter', 10), ('crm.lead', 20)] + for objname in phoneobjects: + if ( + '_phone_name_sequence' in dir(self.pool[objname]) and + self.pool[objname]._phone_name_sequence): + phonefieldslist.append( + (objname, self.pool[objname]._phone_name_sequence)) phonefieldslist_sorted = sorted( phonefieldslist, - key=lambda element: element.values()[0]['get_name_sequence']) - - for phonedict in phonefieldslist_sorted: - objname = phonedict.keys()[0] - prop = phonedict.values()[0] - phonefields = prop['phonefields'] + key=lambda element: element[1]) + _logger.debug('phonefieldslist_sorted=%s' % phonefieldslist_sorted) + for (objname, prio) in phonefieldslist_sorted: obj = self.pool[objname] pg_search_number = str('%' + end_number_to_match) _logger.debug( "Will search phone and mobile numbers in %s ending with '%s'" % (objname, end_number_to_match)) domain = [] - for phonefield in phonefields: - domain.append((phonefield, 'like', pg_search_number)) - if len(phonefields) > 1: - domain = ['|'] * (len(phonefields) - 1) + domain + for phonefield in obj._phone_fields: + domain.append((phonefield, '=like', pg_search_number)) + if len(obj._phone_fields) > 1: + domain = ['|'] * (len(obj._phone_fields) - 1) + domain res_ids = obj.search(cr, uid, domain, context=context) if len(res_ids) > 1: _logger.warning( @@ -190,13 +201,20 @@ class phone_common(orm.AbstractModel): def _get_phone_fields(self, cr, uid, context=None): '''Returns a dict with key = object name and value = list of phone fields''' - res = { - 'res.partner': { - 'phonefields': ['phone', 'mobile'], - 'faxfields': ['fax'], - 'get_name_sequence': 10, - }, - } + model_ids = self.pool['ir.model'].search( + cr, uid, [], context=context) + res = [] + for model in self.pool['ir.model'].browse( + cr, uid, model_ids, context=context): + senv = False + try: + senv = self.pool[model.model] + except: + continue + if ( + '_phone_fields' in dir(senv) and + isinstance(senv._phone_fields, list)): + res.append(model.model) return res def click2dial(self, cr, uid, erp_number, context=None): @@ -208,16 +226,20 @@ class phone_common(orm.AbstractModel): class res_partner(orm.Model): _name = 'res.partner' _inherit = ['res.partner', 'phone.common'] + _phone_fields = ['phone', 'mobile', 'fax'] + _phone_name_sequence = 10 + _country_field = 'country_id' + _partner_field = None def create(self, cr, uid, vals, context=None): vals_reformated = self._generic_reformat_phonenumbers( - cr, uid, vals, context=context) + cr, uid, None, vals, context=context) return super(res_partner, self).create( cr, uid, vals_reformated, context=context) def write(self, cr, uid, ids, vals, context=None): vals_reformated = self._generic_reformat_phonenumbers( - cr, uid, vals, context=context) + cr, uid, ids, vals, context=context) return super(res_partner, self).write( cr, uid, ids, vals_reformated, context=context) diff --git a/base_phone/res_partner_view.xml b/base_phone/res_partner_view.xml index f0a66f6..86434f3 100644 --- a/base_phone/res_partner_view.xml +++ b/base_phone/res_partner_view.xml @@ -45,6 +45,9 @@ + + {'search_default_customer':1, 'raise_if_phone_parse_fails': True} + diff --git a/base_phone/static/src/js/phone_widget.js b/base_phone/static/src/js/phone_widget.js index 839fe40..de3f42f 100644 --- a/base_phone/static/src/js/phone_widget.js +++ b/base_phone/static/src/js/phone_widget.js @@ -21,51 +21,61 @@ openerp.base_phone = function (instance) { var self = this; var phone_num = this.get('value'); //console.log('BASE_PHONE phone_num = %s', phone_num); + var href = '#'; + var href_text = ''; if (phone_num) { - this.$el.find('a.oe_form_uri') - .attr('href', 'tel:' + phone_num) - .text(formatInternational('', phone_num) || ''); + href = 'tel:' + phone_num; + href_text = formatInternational('', phone_num) || ''; } - if (phone_num && !this.options.dial_button_invisible) { - this.$el.find('#click2dial') - .text(phone_num && _t('Dial') || '') - .on('click', function(ev) { - self.do_notify( - _t('Click2dial started'), - _t('Unhook your ringing phone')); - var arg = { - 'phone_number': phone_num, - 'click2dial_model': self.view.dataset.model, - 'click2dial_id': self.view.datarecord.id}; - self.rpc('/base_phone/click2dial', arg).done(function(r) { - //console.log('Click2dial r=%s', JSON.stringify(r)); - if (r === false) { - self.do_warn("Click2dial failed"); - } else if (typeof r === 'object') { - self.do_notify( - _t('Click2dial successfull'), - _t('Number dialed:') + ' ' + r.dialed_number); - if (r.action_model) { - var context = {}; - if (self.view.dataset.model == 'res.partner') { - context = { - 'partner_id': self.view.datarecord.id}; - } - var action = { - name: r.action_name, - type: 'ir.actions.act_window', - res_model: r.action_model, - view_mode: 'form', - views: [[false, 'form']], - target: 'new', - context: context, - }; - instance.client.action_manager.do_action(action); - } + if (href_text) { + this.$el.find('a.oe_form_uri').attr('href', href).text(href_text); + this.$el.find('span.oe_form_char_content').text(''); + } else { + this.$el.find('a.oe_form_uri').attr('href', '').text(''); + this.$el.find('span.oe_form_char_content').text(phone_num || ''); + } + var click2dial_text = ''; + if (href_text && !this.options.dial_button_invisible) { + click2dial_text = _t('Dial'); + } + this.$el.find('#click2dial') + .text(click2dial_text) + .on('click', function(ev) { + self.do_notify( + _t('Click2dial started'), + _t('Unhook your ringing phone')); + var arg = { + 'phone_number': phone_num, + 'click2dial_model': self.view.dataset.model, + 'click2dial_id': self.view.datarecord.id}; + self.rpc('/base_phone/click2dial', arg).done(function(r) { + //console.log('Click2dial r=%s', JSON.stringify(r)); + if (r === false) { + self.do_warn("Click2dial failed"); + } else if (typeof r === 'object') { + self.do_notify( + _t('Click2dial successfull'), + _t('Number dialed:') + ' ' + r.dialed_number); + if (r.action_model) { + var context = { + 'click2dial_model': self.view.dataset.model, + 'click2dial_id': self.view.datarecord.id, + 'phone_number': phone_num, + }; + var action = { + name: r.action_name, + type: 'ir.actions.act_window', + res_model: r.action_model, + view_mode: 'form', + views: [[false, 'form']], + target: 'new', + context: context, + }; + instance.client.action_manager.do_action(action); } - }); + } }); - } + }); } }, on_button_clicked: function() { @@ -88,10 +98,19 @@ openerp.base_phone = function (instance) { this._super(); } else { var fax_num = this.get('value'); + //console.log('BASE_PHONE fax_num = %s', fax_num); + var href = '#'; + var href_text = ''; if (fax_num) { - this.$el.find('a.oe_form_uri') - .attr('href', 'fax:' + fax_num) - .text(formatInternational('', fax_num) || ''); + href = 'fax:' + fax_num; + href_text = formatInternational('', fax_num) || ''; + } + if (href_text) { + this.$el.find('a.oe_form_uri').attr('href', href).text(href_text); + this.$el.find('span.oe_form_char_content').text(''); + } else { + this.$el.find('a.oe_form_uri').attr('href', '').text(''); + this.$el.find('span.oe_form_char_content').text(fax_num || ''); } } }, @@ -101,5 +120,4 @@ openerp.base_phone = function (instance) { }); instance.web.form.widgets.add('fax', 'instance.base_phone.FieldFax'); - -} +}; diff --git a/base_phone/static/src/xml/phone.xml b/base_phone/static/src/xml/phone.xml index 0cd269c..d1d4a59 100644 --- a/base_phone/static/src/xml/phone.xml +++ b/base_phone/static/src/xml/phone.xml @@ -10,7 +10,7 @@ - +