# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # Copyright (C) 2012 Savoir-faire Linux (). # # 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 . # ############################################################################## import re from osv import fields, osv class res_partner_address_formatted_phone(osv.osv): _inherit = 'res.partner.address' def on_change_phone(self, cr, uid, ids, field_name, phone, country_id=False): result = phone phone_format = self.pool.get('phone_format') if phone: digits = [c for c in phone if c.isdigit()] crosses = [x for x in phone_format if c == 'X'] if len(digits) >= len(crosses): result = u"(%s) %s-%s" % ("".join(digits[0:3]), "".join(digits[3:6]), "".join(digits[6:10])) if len(digits) > 10: result += " x %s" % "".join(digits[10:]) return { 'value': { field_name: result } } res_partner_address_formatted_phone()