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.
54 lines
2.0 KiB
54 lines
2.0 KiB
# -*- coding: utf-8 -*-
|
|
# Copyright 2012-2018 Akretion France
|
|
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import api, models
|
|
import logging
|
|
logger = logging.getLogger(__name__)
|
|
|
|
try:
|
|
import phonenumbers
|
|
except ImportError:
|
|
logger.debug('Cannot import phonenumbers lib.')
|
|
|
|
|
|
class WizardCreateCrmPhonecall(models.TransientModel):
|
|
_name = "wizard.create.crm.phonecall"
|
|
_description = "Propose to create a phone call in CRM"
|
|
|
|
def button_create_outgoing_phonecall(self):
|
|
self.ensure_one()
|
|
return self._create_open_crm_phonecall('outbound')
|
|
|
|
@api.model
|
|
def _create_open_crm_phonecall(self, direction='outbound'):
|
|
teams = self.env['crm.team'].search(
|
|
[('member_ids', 'in', self._uid)])
|
|
action_ctx = self.env.context.copy()
|
|
action_ctx.update({
|
|
'default_direction': direction,
|
|
'default_team_id': teams and teams[0].id or False,
|
|
})
|
|
if self.env.context.get('click2dial_model') == 'res.partner':
|
|
partner_id = self.env.context.get('click2dial_id')
|
|
action_ctx['default_partner_id'] = partner_id
|
|
elif self.env.context.get('click2dial_model') == 'crm.lead':
|
|
lead_id = self.env.context.get('click2dial_id')
|
|
action_ctx['default_opportunity_id'] = lead_id
|
|
parsed_num = phonenumbers.parse(self.env.context.get('phone_number'))
|
|
number_type = phonenumbers.number_type(parsed_num)
|
|
if number_type == 1:
|
|
action_ctx['default_partner_mobile'] =\
|
|
self.env.context.get('phone_number')
|
|
else:
|
|
action_ctx['default_partner_phone'] =\
|
|
self.env.context.get('phone_number')
|
|
action = self.env['ir.actions.act_window'].for_xml_id(
|
|
'crm_phone', 'crm_phonecall_action')
|
|
action.update({
|
|
'view_mode': 'form,tree,calendar',
|
|
'views': False,
|
|
'context': action_ctx,
|
|
})
|
|
return action
|