19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:31:39 +01:00
parent 5df8c07b59
commit daa394e8b0
2114 changed files with 564841 additions and 299642 deletions

View file

@ -4,7 +4,7 @@
from odoo import fields, models
class Digest(models.Model):
class DigestDigest(models.Model):
_inherit = 'digest.digest'
kpi_livechat_rating = fields.Boolean('% of Happiness')
@ -15,40 +15,35 @@ class Digest(models.Model):
kpi_livechat_response_value = fields.Float(digits=(16, 2), compute='_compute_kpi_livechat_response_value')
def _compute_kpi_livechat_rating_value(self):
channels = self.env['mail.channel'].search([('livechat_operator_id', '=', self.env.user.partner_id.id)])
for record in self:
start, end, company = record._get_kpi_compute_parameters()
domain = [
('create_date', '>=', start), ('create_date', '<', end),
('rated_partner_id', '=', self.env.user.partner_id.id)
]
ratings = channels.rating_get_grades(domain)
record.kpi_livechat_rating_value = ratings['great'] * 100 / sum(ratings.values()) if sum(ratings.values()) else 0
channels = self.env['discuss.channel'].search([('channel_type', '=', 'livechat')])
start, end, __ = self._get_kpi_compute_parameters()
domain = [
('create_date', '>=', start),
('create_date', '<', end),
]
ratings = channels.rating_get_grades(domain)
self.kpi_livechat_rating_value = (
ratings['great'] * 100 / sum(ratings.values())
if sum(ratings.values()) else 0
)
def _compute_kpi_livechat_conversations_value(self):
for record in self:
start, end, company = record._get_kpi_compute_parameters()
record.kpi_livechat_conversations_value = self.env['mail.channel'].search_count([
('channel_type', '=', 'livechat'),
('livechat_operator_id', '=', self.env.user.partner_id.id),
('create_date', '>=', start), ('create_date', '<', end)
])
start, end, __ = self._get_kpi_compute_parameters()
self.kpi_livechat_conversations_value = self.env['discuss.channel'].search_count([
('channel_type', '=', 'livechat'),
('create_date', '>=', start), ('create_date', '<', end),
])
def _compute_kpi_livechat_response_value(self):
for record in self:
start, end, company = record._get_kpi_compute_parameters()
response_time = self.env['im_livechat.report.operator'].sudo()._read_group([
('start_date', '>=', start), ('start_date', '<', end),
('partner_id', '=', self.env.user.partner_id.id)], ['partner_id', 'time_to_answer'], ['partner_id'])
record.kpi_livechat_response_value = sum(
response['time_to_answer']
for response in response_time
if response['time_to_answer'] > 0
)
start, end, __ = self._get_kpi_compute_parameters()
response_time = self.env['im_livechat.report.channel'].sudo()._read_group([
('start_date', '>=', start),
('start_date', '<', end),
], [], ['time_to_answer:avg'])
self.kpi_livechat_response_value = response_time[0][0]
def _compute_kpis_actions(self, company, user):
res = super(Digest, self)._compute_kpis_actions(company, user)
res['kpi_livechat_rating'] = 'im_livechat.rating_rating_action_livechat_report'
res = super()._compute_kpis_actions(company, user)
res['kpi_livechat_conversations'] = 'im_livechat.im_livechat_report_operator_action'
res['kpi_livechat_response'] = 'im_livechat.im_livechat_report_channel_time_to_answer_action'
return res