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.
73 lines
2.5 KiB
73 lines
2.5 KiB
# -*- coding: utf-8 -*-
|
|
# Copyright 2014-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, _
|
|
from odoo.addons.web.controllers.main import clean_action
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class PhoneCommon(models.AbstractModel):
|
|
_inherit = 'phone.common'
|
|
|
|
@api.model
|
|
def _prepare_incall_pop_action(self, record_res, number):
|
|
action = False
|
|
if record_res:
|
|
obj = self.env[record_res[0]]
|
|
action = {
|
|
'name': obj._description,
|
|
'type': 'ir.actions.act_window',
|
|
'res_model': record_res[0],
|
|
'view_mode': 'form,tree',
|
|
'views': [[False, 'form']],
|
|
# 'target': 'new',
|
|
'res_id': record_res[1],
|
|
}
|
|
else:
|
|
action = {
|
|
'name': _('Number Not Found'),
|
|
'type': 'ir.actions.act_window',
|
|
'res_model': 'number.not.found',
|
|
'view_mode': 'form',
|
|
'views': [[False, 'form']],
|
|
# 'target': 'new',
|
|
'context': {'default_calling_number': number}
|
|
}
|
|
return action
|
|
|
|
@api.model
|
|
def incall_notify_by_login(self, number, login_list):
|
|
assert isinstance(login_list, list), 'login_list must be a list'
|
|
res = self.get_record_from_phone_number(number)
|
|
users = self.env['res.users'].search(
|
|
[('login', 'in', login_list)])
|
|
logger.info(
|
|
'Notify incoming call from number %s to user IDs %s'
|
|
% (number, users.ids))
|
|
action = self._prepare_incall_pop_action(res, number)
|
|
action = clean_action(action)
|
|
if action:
|
|
for user in users:
|
|
channel = 'notify_info_%s' % user.id
|
|
bus_message = {
|
|
'message': _('Here is my message'),
|
|
'title': _('Incoming call'),
|
|
'action': action,
|
|
# 'sticky': True,
|
|
'action_link_name': 'action_link_name',
|
|
}
|
|
|
|
self.sudo().env['bus.bus'].sendone(
|
|
channel, bus_message)
|
|
logger.debug(
|
|
'This action has been sent to user ID %d: %s'
|
|
% (user.id, action))
|
|
if res:
|
|
callerid = res[2]
|
|
else:
|
|
callerid = False
|
|
return callerid
|