1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from markupsafe import Markup
from odoo import api, fields, models
from odoo.osv import expression
class MailActivitySchedule(models.TransientModel):
_inherit = 'mail.activity.schedule'
department_id = fields.Many2one('hr.department', compute='_compute_department_id')
plan_department_filterable = fields.Boolean(compute='_compute_plan_department_filterable')
@api.depends('department_id')
def _compute_plan_available_ids(self):
todo = self.filtered(lambda s: s.plan_department_filterable)
for scheduler in todo:
base_domain = self._get_plan_available_base_domain()
if not scheduler.department_id:
final_domain = expression.AND([base_domain, [('department_id', '=', False)]])
else:
final_domain = expression.AND([base_domain, ['|', ('department_id', '=', False), ('department_id', '=', self.department_id.id)]])
scheduler.plan_available_ids = self.env['mail.activity.plan'].search(final_domain)
super(MailActivitySchedule, self - todo)._compute_plan_available_ids()
@api.depends('res_model')
def _compute_plan_department_filterable(self):
for wizard in self:
wizard.plan_department_filterable = wizard.res_model == 'hr.employee'
@api.depends('plan_date', 'plan_id')
def _compute_plan_summary(self):
if not self.env.context.get('sort_by_responsible', False):
return super()._compute_plan_summary()
self.plan_summary = False
responsible_value_to_label = dict(
self.env['mail.activity.plan.template']._fields['responsible_type']._description_selection(self.env)
)
for scheduler in self:
templates_by_responsible_type = scheduler.plan_id.template_ids.grouped('responsible_type')
scheduler.plan_summary = Markup('<ul>%(summary_by_responsible)s</ul>') % {
'summary_by_responsible': Markup().join(
Markup("%(responsible)s %(summary_lines)s") % {
'responsible': responsible_value_to_label[key],
'summary_lines': scheduler._get_summary_lines(templates)
} for key, templates in templates_by_responsible_type.items()
)}
@api.depends('res_model_id', 'res_ids')
def _compute_department_id(self):
for wizard in self:
if wizard.plan_department_filterable:
applied_on = wizard._get_applied_on_records()
all_departments = applied_on.department_id
wizard.department_id = False if len(all_departments) > 1 else all_departments
else:
wizard.department_id = False
|