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.

131 lines
5.3 KiB

10 years ago
10 years ago
  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Asterisk Click2dial module for OpenERP
  5. # Copyright (C) 2010-2013 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 Asterisk, in the format used by Asterisk (not E.164)."),
  34. 'e164_number': fields.char(
  35. 'E.164 Number', size=64,
  36. help="E.164 equivalent of the calling number."),
  37. 'number_type': fields.selection(
  38. [('phone', 'Fixed'), ('mobile', 'Mobile')],
  39. 'Fixed/Mobile', required=True),
  40. 'to_update_partner_id': fields.many2one(
  41. 'res.partner', 'Partner to Update',
  42. help="Partner on which the phone number will be written"),
  43. 'current_partner_phone': fields.related(
  44. 'to_update_partner_id', 'phone', type='char',
  45. relation='res.partner', string='Current Phone', readonly=True),
  46. 'current_partner_mobile': fields.related(
  47. 'to_update_partner_id', 'mobile', type='char',
  48. relation='res.partner', string='Current Mobile', readonly=True),
  49. }
  50. def default_get(self, cr, uid, fields_list, context=None):
  51. res = super(number_not_found, self).default_get(
  52. cr, uid, fields_list, context=context
  53. )
  54. if not res:
  55. res = {}
  56. if res.get('calling_number'):
  57. convert = self.pool['phone.common']._generic_reformat_phonenumbers(
  58. cr, uid, {'phone': res.get('calling_number')}, context=context)
  59. parsed_num = phonenumbers.parse(convert.get('phone'))
  60. res['e164_number'] = phonenumbers.format_number(
  61. parsed_num, phonenumbers.PhoneNumberFormat.INTERNATIONAL)
  62. number_type = phonenumbers.number_type(parsed_num)
  63. if number_type == 1:
  64. res['number_type'] = 'mobile'
  65. else:
  66. res['number_type'] = 'phone'
  67. return res
  68. def create_partner(self, cr, uid, ids, context=None):
  69. '''Function called by the related button of the wizard'''
  70. if context is None:
  71. context = {}
  72. wiz = self.browse(cr, uid, ids[0], context=context)
  73. parsed_num = phonenumbers.parse(wiz.e164_number, None)
  74. phonenumbers.number_type(parsed_num)
  75. context['default_%s' % wiz.number_type] = wiz.e164_number
  76. action = {
  77. 'name': _('Create New Partner'),
  78. 'view_mode': 'form,tree,kanban',
  79. 'res_model': 'res.partner',
  80. 'type': 'ir.actions.act_window',
  81. 'nodestroy': False,
  82. 'target': 'current',
  83. 'context': context,
  84. }
  85. return action
  86. def update_partner(self, cr, uid, ids, context=None):
  87. wiz = self.browse(cr, uid, ids[0], context=context)
  88. if not wiz.to_update_partner_id:
  89. raise orm.except_orm(
  90. _('Error:'),
  91. _("Select the Partner to Update."))
  92. self.pool['res.partner'].write(
  93. cr, uid, wiz.to_update_partner_id.id,
  94. {wiz.number_type: wiz.e164_number}, context=context)
  95. action = {
  96. 'name': _('Partner: %s' % wiz.to_update_partner_id.name),
  97. 'type': 'ir.actions.act_window',
  98. 'res_model': 'res.partner',
  99. 'view_mode': 'form,tree,kanban',
  100. 'nodestroy': False,
  101. 'target': 'current',
  102. 'res_id': wiz.to_update_partner_id.id,
  103. 'context': context,
  104. }
  105. return action
  106. def onchange_to_update_partner(
  107. self, cr, uid, ids, to_update_partner_id, context=None):
  108. res = {'value': {}}
  109. if to_update_partner_id:
  110. to_update_partner = self.pool['res.partner'].browse(
  111. cr, uid, to_update_partner_id, context=context)
  112. res['value'].update({
  113. 'current_partner_phone': to_update_partner.phone,
  114. 'current_partner_mobile': to_update_partner.mobile,
  115. })
  116. else:
  117. res['value'].update({
  118. 'current_partner_phone': False,
  119. 'current_partner_mobile': False,
  120. })
  121. return res