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.

133 lines
5.3 KiB

10 years ago
9 years ago
9 years ago
10 years ago
  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Base Phone module for Odoo
  5. # Copyright (C) 2010-2015 Alexis de Lattre <alexis@via.ecp.fr>
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. ##############################################################################
  21. from openerp.osv import orm, fields
  22. from openerp.tools.translate import _
  23. import logging
  24. import phonenumbers
  25. _logger = logging.getLogger(__name__)
  26. class number_not_found(orm.TransientModel):
  27. _name = "number.not.found"
  28. _description = "Number not found"
  29. _columns = {
  30. 'calling_number': fields.char(
  31. 'Calling Number', size=64, readonly=True,
  32. help="Phone number of calling party that has been obtained "
  33. "from the telephony server, in the format used by the "
  34. "telephony server (not E.164)."),
  35. 'e164_number': fields.char(
  36. 'E.164 Number', size=64,
  37. help="E.164 equivalent of the calling number."),
  38. 'number_type': fields.selection(
  39. [('phone', 'Fixed'), ('mobile', 'Mobile')],
  40. 'Fixed/Mobile', required=True),
  41. 'to_update_partner_id': fields.many2one(
  42. 'res.partner', 'Partner to Update',
  43. help="Partner on which the phone number will be written"),
  44. 'current_partner_phone': fields.related(
  45. 'to_update_partner_id', 'phone', type='char',
  46. relation='res.partner', string='Current Phone', readonly=True),
  47. 'current_partner_mobile': fields.related(
  48. 'to_update_partner_id', 'mobile', type='char',
  49. relation='res.partner', string='Current Mobile', readonly=True),
  50. }
  51. def default_get(self, cr, uid, fields_list, context=None):
  52. res = super(number_not_found, self).default_get(
  53. cr, uid, fields_list, context=context
  54. )
  55. if not res:
  56. res = {}
  57. if res.get('calling_number'):
  58. convert = self.pool['res.partner']._generic_reformat_phonenumbers(
  59. cr, uid, None, {'phone': res.get('calling_number')},
  60. context=context)
  61. parsed_num = phonenumbers.parse(convert.get('phone'))
  62. res['e164_number'] = phonenumbers.format_number(
  63. parsed_num, phonenumbers.PhoneNumberFormat.INTERNATIONAL)
  64. number_type = phonenumbers.number_type(parsed_num)
  65. if number_type == 1:
  66. res['number_type'] = 'mobile'
  67. else:
  68. res['number_type'] = 'phone'
  69. return res
  70. def create_partner(self, cr, uid, ids, context=None):
  71. '''Function called by the related button of the wizard'''
  72. if context is None:
  73. context = {}
  74. wiz = self.browse(cr, uid, ids[0], context=context)
  75. parsed_num = phonenumbers.parse(wiz.e164_number, None)
  76. phonenumbers.number_type(parsed_num)
  77. context['default_%s' % wiz.number_type] = wiz.e164_number
  78. action = {
  79. 'name': _('Create New Partner'),
  80. 'view_mode': 'form,tree,kanban',
  81. 'res_model': 'res.partner',
  82. 'type': 'ir.actions.act_window',
  83. 'nodestroy': False,
  84. 'target': 'current',
  85. 'context': context,
  86. }
  87. return action
  88. def update_partner(self, cr, uid, ids, context=None):
  89. wiz = self.browse(cr, uid, ids[0], context=context)
  90. if not wiz.to_update_partner_id:
  91. raise orm.except_orm(
  92. _('Error:'),
  93. _("Select the Partner to Update."))
  94. self.pool['res.partner'].write(
  95. cr, uid, wiz.to_update_partner_id.id,
  96. {wiz.number_type: wiz.e164_number}, context=context)
  97. action = {
  98. 'name': _('Partner: %s' % wiz.to_update_partner_id.name),
  99. 'type': 'ir.actions.act_window',
  100. 'res_model': 'res.partner',
  101. 'view_mode': 'form,tree,kanban',
  102. 'nodestroy': False,
  103. 'target': 'current',
  104. 'res_id': wiz.to_update_partner_id.id,
  105. 'context': context,
  106. }
  107. return action
  108. def onchange_to_update_partner(
  109. self, cr, uid, ids, to_update_partner_id, context=None):
  110. res = {'value': {}}
  111. if to_update_partner_id:
  112. to_update_partner = self.pool['res.partner'].browse(
  113. cr, uid, to_update_partner_id, context=context)
  114. res['value'].update({
  115. 'current_partner_phone': to_update_partner.phone,
  116. 'current_partner_mobile': to_update_partner.mobile,
  117. })
  118. else:
  119. res['value'].update({
  120. 'current_partner_phone': False,
  121. 'current_partner_mobile': False,
  122. })
  123. return res