# Part of Odoo. See LICENSE file for full copyright and licensing details. from ast import literal_eval import logging import pytz from collections import defaultdict, Counter from datetime import date, datetime, timedelta from dateutil.relativedelta import relativedelta from odoo import api, fields, models, _ from odoo.exceptions import AccessError from odoo.tools import is_html_empty from odoo.tools.misc import clean_context, get_lang, groupby from odoo.addons.mail.tools.discuss import Store _logger = logging.getLogger(__name__) class MailActivity(models.Model): """ An actual activity to perform. Activities are linked to documents using res_id and res_model_id fields. Activities have a deadline that can be used in kanban view to display a status. Once done activities are unlinked and a message is posted. This message has a new activity_type_id field that indicates the activity linked to the message. """ _name = 'mail.activity' _description = 'Activity' _order = 'date_deadline ASC, id ASC' _rec_name = 'summary' @api.model def default_get(self, fields): res = super().default_get(fields) if 'res_model_id' in fields and res.get('res_model'): res['res_model_id'] = self.env['ir.model']._get(res['res_model']).id return res @api.model def _default_activity_type(self): default_vals = self.default_get(['res_model_id', 'res_model']) if not default_vals.get('res_model_id'): return False current_model = self.env["ir.model"].sudo().browse(default_vals['res_model_id']).model return self._default_activity_type_for_model(current_model) @api.model def _default_activity_type_for_model(self, model): todo_id = self.env['ir.model.data']._xmlid_to_res_id('mail.mail_activity_data_todo', raise_if_not_found=False) activity_type_todo = self.env['mail.activity.type'].browse(todo_id) if todo_id else self.env['mail.activity.type'] if activity_type_todo and activity_type_todo.active and \ (activity_type_todo.res_model == model or not activity_type_todo.res_model): return activity_type_todo activity_type_model = self.env['mail.activity.type'].search([('res_model', '=', model)], limit=1) if activity_type_model: return activity_type_model activity_type_generic = self.env['mail.activity.type'].search([('res_model', '=', False)], limit=1) return activity_type_generic # owner res_model_id = fields.Many2one( 'ir.model', 'Document Model', index=True, ondelete='cascade', required=True) res_model = fields.Char( 'Related Document Model', index=True, related='res_model_id.model', precompute=True, store=True, readonly=True) res_id = fields.Many2oneReference(string='Related Document ID', index=True, model_field='res_model') res_name = fields.Char( 'Document Name', compute='_compute_res_name', compute_sudo=True, store=True, readonly=True) # activity activity_type_id = fields.Many2one( 'mail.activity.type', string='Activity Type', domain="['|', ('res_model', '=', False), ('res_model', '=', res_model)]", ondelete='restrict', default=_default_activity_type) activity_category = fields.Selection(related='activity_type_id.category', readonly=True) activity_decoration = fields.Selection(related='activity_type_id.decoration_type', readonly=True) icon = fields.Char('Icon', related='activity_type_id.icon', readonly=True) summary = fields.Char('Summary') note = fields.Html('Note', sanitize_style=True) date_deadline = fields.Date('Due Date', index=True, required=True, default=fields.Date.context_today) date_done = fields.Date('Done Date', compute='_compute_date_done', store=True) automated = fields.Boolean( 'Automated activity', readonly=True, help='Indicates this activity has been created automatically and not by any user.') # Attachments are linked to a document through model / res_id and to the activity through this field. attachment_ids = fields.Many2many( 'ir.attachment', 'activity_attachment_rel', 'activity_id', 'attachment_id', string='Attachments') # description user_id = fields.Many2one( 'res.users', 'Assigned to', default=lambda self: self.env.user, index=True, required=True, ondelete='cascade') user_tz = fields.Selection(string='Timezone', related="user_id.tz", store=True) request_partner_id = fields.Many2one('res.partner', string='Requesting Partner') state = fields.Selection([ ('overdue', 'Overdue'), ('today', 'Today'), ('planned', 'Planned'), ('done', 'Done')], 'State', compute='_compute_state') recommended_activity_type_id = fields.Many2one('mail.activity.type', string="Recommended Activity Type") previous_activity_type_id = fields.Many2one('mail.activity.type', string='Previous Activity Type', readonly=True) has_recommended_activities = fields.Boolean( 'Next activities available', compute='_compute_has_recommended_activities') # technical field for UX purpose mail_template_ids = fields.Many2many(related='activity_type_id.mail_template_ids', readonly=True) chaining_type = fields.Selection(related='activity_type_id.chaining_type', readonly=True) # access can_write = fields.Boolean(compute='_compute_can_write') # used to hide buttons if the current user has no access active = fields.Boolean(default=True) _sql_constraints = [ # Required on a Many2one reference field is not sufficient as actually # writing 0 is considered as a valid value, because this is an integer field. # We therefore need a specific constraint check. ('check_res_id_is_set', 'CHECK(res_id IS NOT NULL AND res_id !=0 )', 'Activities have to be linked to records with a not null res_id.') ] @api.onchange('previous_activity_type_id') def _compute_has_recommended_activities(self): for record in self: record.has_recommended_activities = bool(record.previous_activity_type_id.suggested_next_type_ids) @api.onchange('previous_activity_type_id') def _onchange_previous_activity_type_id(self): for record in self: if record.previous_activity_type_id.triggered_next_type_id: record.activity_type_id = record.previous_activity_type_id.triggered_next_type_id @api.depends('active') def _compute_date_done(self): unarchived = self.filtered('active') unarchived.date_done = False # keep earliest archive date if multi archive toupdate = (self - unarchived).filtered(lambda act: not act.date_done) toupdate.date_done = fields.Datetime.now() @api.depends('res_model', 'res_id') def _compute_res_name(self): for activity in self: activity.res_name = activity.res_model and \ self.env[activity.res_model].browse(activity.res_id).display_name @api.depends('active', 'date_deadline') def _compute_state(self): for record in self.filtered(lambda activity: activity.date_deadline): tz = record.user_id.sudo().tz date_deadline = record.date_deadline record.state = 'done' if not record.active else self._compute_state_from_date(date_deadline, tz) @api.model def _compute_state_from_date(self, date_deadline, tz=False): date_deadline = fields.Date.from_string(date_deadline) today_default = date.today() today = today_default if tz: today_utc = pytz.utc.localize(datetime.utcnow()) today_tz = today_utc.astimezone(pytz.timezone(tz)) today = date(year=today_tz.year, month=today_tz.month, day=today_tz.day) diff = (date_deadline - today) if diff.days == 0: return 'today' elif diff.days < 0: return 'overdue' else: return 'planned' @api.depends('res_model', 'res_id', 'user_id') def _compute_can_write(self): valid_records = self._filtered_access('write') for record in self: record.can_write = record in valid_records @api.onchange('activity_type_id') def _onchange_activity_type_id(self): if self.activity_type_id: if self.activity_type_id.summary: self.summary = self.activity_type_id.summary self.date_deadline = self.activity_type_id._get_date_deadline() self.user_id = self.activity_type_id.default_user_id or self.env.user if self.activity_type_id.default_note: self.note = self.activity_type_id.default_note @api.onchange('recommended_activity_type_id') def _onchange_recommended_activity_type_id(self): if self.recommended_activity_type_id: self.activity_type_id = self.recommended_activity_type_id def _check_access(self, operation: str) -> tuple | None: """ Determine the subset of ``self`` for which ``operation`` is allowed. A custom implementation is done on activities as this document has some access rules and is based on related document for activities that are not covered by those rules. Access on activities are the following : * read: access rule AND (assigned to user OR read rights on related documents); * write: access rule OR (``mail_post_access`` or write) rights on related documents); * create: access rule AND (``mail_post_access`` or write) right on related documents; * unlink: access rule OR (``mail_post_access`` or write) rights on related documents); """ result = super()._check_access(operation) if not self: return result # determine activities on which to check the related document if operation == 'read': # check activities allowed by access rules activities = self - result[0] if result else self activities -= activities.sudo().filtered_domain([('user_id', '=', self.env.uid)]) elif operation == 'create': # check activities allowed by access rules activities = self - result[0] if result else self else: assert operation in ('write', 'unlink'), f"Unexpected operation {operation!r}" # check access to the model, and check the forbidden records only if self.browse()._check_access(operation): return result activities = result[0] if result else self.browse() result = None if not activities: return result # now check access on related document of 'activities', and collect the # ids of forbidden activities model_docid_actids = defaultdict(lambda: defaultdict(list)) for activity in activities.sudo(): model_docid_actids[activity.res_model][activity.res_id].append(activity.id) forbidden_ids = [] for doc_model, docid_actids in model_docid_actids.items(): documents = self.env[doc_model].browse(docid_actids) doc_operation = getattr( documents, '_mail_post_access', 'read' if operation == 'read' else 'write' ) if doc_result := documents._check_access(doc_operation): for document in doc_result[0]: forbidden_ids.extend(docid_actids[document.id]) if forbidden_ids: forbidden = self.browse(forbidden_ids) if result: result = (result[0] + forbidden, result[1]) else: result = (forbidden, lambda: forbidden._make_access_error(operation)) return result def _make_access_error(self, operation: str) -> AccessError: return AccessError(_( "The requested operation cannot be completed due to security restrictions. " "Please contact your system administrator.\n\n" "(Document type: %(type)s, Operation: %(operation)s)\n\n" "Records: %(records)s, User: %(user)s", type=self._description, operation=operation, records=self.ids[:6], user=self.env.uid, )) # ------------------------------------------------------ # ORM overrides # ------------------------------------------------------ @api.model_create_multi def create(self, vals_list): activities = super(MailActivity, self).create(vals_list) # find partners related to responsible users, separate readable from unreadable if any(user != self.env.user for user in activities.user_id): user_partners = activities.user_id.partner_id readable_user_partners = user_partners._filtered_access('read') else: readable_user_partners = self.env.user.partner_id # when creating activities for other: send a notification to assigned user; if self.env.context.get('mail_activity_quick_update'): activities_to_notify = self.env['mail.activity'] else: activities_to_notify = activities.filtered(lambda act: act.user_id != self.env.user) if activities_to_notify: to_sudo = activities_to_notify.filtered(lambda act: act.user_id.partner_id not in readable_user_partners) other = activities_to_notify - to_sudo to_sudo.sudo().action_notify() other.action_notify() # subscribe (batch by model and user to speedup) for model, activity_data in activities._classify_by_model().items(): per_user = dict() for activity in activity_data['activities'].filtered(lambda act: act.user_id): if activity.user_id not in per_user: per_user[activity.user_id] = [activity.res_id] else: per_user[activity.user_id].append(activity.res_id) for user, res_ids in per_user.items(): pids = user.partner_id.ids if user.partner_id in readable_user_partners else user.sudo().partner_id.ids self.env[model].browse(res_ids).message_subscribe(partner_ids=pids) # send notifications about activity creation todo_activities = activities.filtered(lambda act: act.date_deadline <= fields.Date.today()) if todo_activities: activity.user_id._bus_send("mail.activity/updated", {"activity_created": True}) return activities def write(self, values): if values.get('user_id'): user_changes = self.filtered(lambda activity: activity.user_id.id != values.get('user_id')) pre_responsibles = user_changes.user_id res = super(MailActivity, self).write(values) if values.get('user_id'): if values['user_id'] != self.env.uid: if not self.env.context.get('mail_activity_quick_update', False): user_changes.action_notify() for activity in user_changes: self.env[activity.res_model].browse(activity.res_id).message_subscribe(partner_ids=[activity.user_id.partner_id.id]) # send bus notifications todo_activities = user_changes.filtered(lambda act: act.date_deadline <= fields.Date.today()) if todo_activities: todo_activities.user_id._bus_send( "mail.activity/updated", {"activity_created": True} ) pre_responsibles._bus_send("mail.activity/updated", {"activity_deleted": True}) return res def unlink(self): todo_activities = self.filtered(lambda act: act.date_deadline <= fields.Date.today()) if todo_activities: todo_activities.user_id._bus_send("mail.activity/updated", {"activity_deleted": True}) return super(MailActivity, self).unlink() @api.model def _search(self, domain, offset=0, limit=None, order=None): """ Override that adds specific access rights of mail.activity, to remove ids uid could not see according to our custom rules. Please refer to :meth:`_check_access` for more details about those rules. The method is inspired by what has been done on mail.message. """ # Rules do not apply to administrator if self.env.is_superuser(): return super()._search(domain, offset, limit, order) # retrieve activities and their corresponding res_model, res_id # Don't use the ORM to avoid cache pollution query = super()._search(domain, offset, limit, order) fnames_to_read = ['id', 'res_model', 'res_id', 'user_id'] rows = self.env.execute_query(query.select( *[self._field_to_sql(self._table, fname) for fname in fnames_to_read], )) # group res_ids by model, and determine accessible records # Note: the user can read all activities assigned to him (see at the end of the method) model_ids = defaultdict(set) for __, res_model, res_id, user_id in rows: if user_id != self.env.uid: model_ids[res_model].add(res_id) allowed_ids = defaultdict(set) for res_model, res_ids in model_ids.items(): records = self.env[res_model].browse(res_ids) # fall back on related document access right checks. Use the same as defined for mail.thread # if available; otherwise fall back on read operation = getattr(records, '_mail_post_access', 'read') allowed_ids[res_model] = set(records._filtered_access(operation)._ids) activities = self.browse( id_ for id_, res_model, res_id, user_id in rows if user_id == self.env.uid or res_id in allowed_ids[res_model] ) return activities._as_query(order) @api.depends('summary', 'activity_type_id') def _compute_display_name(self): for record in self: name = record.summary or record.activity_type_id.display_name record.display_name = name # ------------------------------------------------------ # Business Methods # ------------------------------------------------------ def action_notify(self): if not self: return for activity in self: if activity.user_id.lang: # Send the notification in the assigned user's language activity = activity.with_context(lang=activity.user_id.lang) model_description = activity.env['ir.model']._get(activity.res_model).display_name body = activity.env['ir.qweb']._render( 'mail.message_activity_assigned', { 'activity': activity, 'model_description': model_description, 'is_html_empty': is_html_empty, }, minimal_qcontext=True ) record = activity.env[activity.res_model].browse(activity.res_id) if activity.user_id: record.message_notify( partner_ids=activity.user_id.partner_id.ids, body=body, record_name=activity.res_name, model_description=model_description, email_layout_xmlid='mail.mail_notification_layout', subject=_('"%(activity_name)s: %(summary)s" assigned to you', activity_name=activity.res_name, summary=activity.summary or activity.activity_type_id.name), subtitles=[_('Activity: %s', activity.activity_type_id.name), _('Deadline: %s', activity.date_deadline.strftime(get_lang(activity.env).date_format))] ) def action_done(self): """ Wrapper without feedback because web button add context as parameter, therefore setting context to feedback """ return self.filtered(lambda r: r.active).action_feedback() def action_done_redirect_to_other(self): """ Mark activity as done and return action mail.mail_activity_without_access_action. Goal: Unless "keep done" activity is enabled, when marking an activity as done, the activity is deleted and can no more be displayed. To overcome this, we return an action that will launch the list view displaying the activities corresponding to the active_ids from the context (i.e.: the remaining "other activities"). If the right context is not available, we recompute the activities to display. """ self.action_done() action = self.env["ir.actions.actions"]._for_xml_id('mail.mail_activity_without_access_action') action_context = literal_eval(action.get('context', '{}')) if self.env.context.get('active_model') == 'mail.activity': active_ids = self.env.context.get('active_ids', []) else: # Wrong context -> we recompute the activities for which the user has no access to the underlying record activity_groups = self.env['res.users']._get_activity_groups() activity_model_id = self.env['ir.model']._get_id('mail.activity') active_ids = next((g['activity_ids'] for g in activity_groups if g['id'] == activity_model_id), []) action['context'] = { **action_context, 'active_ids': active_ids, 'active_model': 'mail.activity', } return action def action_feedback(self, feedback=False, attachment_ids=None): messages, _next_activities = self.with_context( clean_context(self.env.context) )._action_done(feedback=feedback, attachment_ids=attachment_ids) return messages[0].id if messages else False def action_done_schedule_next(self): """ Wrapper without feedback because web button add context as parameter, therefore setting context to feedback """ return self.action_feedback_schedule_next() def action_feedback_schedule_next(self, feedback=False, attachment_ids=None): ctx = dict( clean_context(self.env.context), default_previous_activity_type_id=self.activity_type_id.id, activity_previous_deadline=self.date_deadline, default_res_id=self.res_id, default_res_model=self.res_model, ) _messages, next_activities = self._action_done(feedback=feedback, attachment_ids=attachment_ids) # will unlink activity, dont access self after that if next_activities: return False return { 'name': _('Schedule an Activity'), 'context': ctx, 'view_mode': 'form', 'res_model': 'mail.activity', 'views': [(False, 'form')], 'type': 'ir.actions.act_window', 'target': 'new', } def _action_done(self, feedback=False, attachment_ids=None): """ Private implementation of marking activity as done: posting a message, deleting activity (since done), and eventually create the automatical next activity (depending on config). :param feedback: optional feedback from user when marking activity as done :param attachment_ids: list of ir.attachment ids to attach to the posted mail.message :returns (messages, activities) where - messages is a recordset of posted mail.message - activities is a recordset of mail.activity of forced automically created activities """ # marking as 'done' messages = self.env['mail.message'] next_activities_values = [] # Search for all attachments linked to the activities we are about to unlink. This way, we # can link them to the message posted and prevent their deletion. attachments = self.env['ir.attachment'].search_read([ ('res_model', '=', self._name), ('res_id', 'in', self.ids), ], ['id', 'res_id']) activity_attachments = defaultdict(list) for attachment in attachments: activity_id = attachment['res_id'] activity_attachments[activity_id].append(attachment['id']) for model, activity_data in self._classify_by_model().items(): # Allow user without access to the record to "mark as done" activities assigned to them. At the end of the # method, the activity is unlinked or archived which ensure the user has enough right on the activities. records_sudo = self.env[model].sudo().browse(activity_data['record_ids']) for record_sudo, activity in zip(records_sudo, activity_data['activities']): # extract value to generate next activities if activity.chaining_type == 'trigger': vals = activity.with_context(activity_previous_deadline=activity.date_deadline)._prepare_next_activity_values() next_activities_values.append(vals) # post message on activity, before deleting it activity_message = record_sudo.message_post_with_source( 'mail.message_activity_done', attachment_ids=attachment_ids, author_id=self.env.user.partner_id.id, render_values={ 'activity': activity, 'feedback': feedback, 'display_assignee': activity.user_id != self.env.user }, mail_activity_type_id=activity.activity_type_id.id, subtype_xmlid='mail.mt_activities', ) if activity.activity_type_id.keep_done: attachment_ids = (attachment_ids or []) + activity_attachments.get(activity.id, []) if attachment_ids: activity.attachment_ids = attachment_ids # Moving the attachments in the message # TODO: Fix void res_id on attachment when you create an activity with an image # directly, see route /web_editor/attachment/add if activity_attachments[activity.id]: message_attachments = self.env['ir.attachment'].browse(activity_attachments[activity.id]) if message_attachments: message_attachments.write({ 'res_id': activity_message.id, 'res_model': activity_message._name, }) activity_message.attachment_ids = message_attachments messages += activity_message next_activities = self.env['mail.activity'] if next_activities_values: next_activities = self.env['mail.activity'].create(next_activities_values) activity_to_keep = self.filtered('activity_type_id.keep_done') activity_to_keep.action_archive() (self - activity_to_keep).unlink() # will unlink activity, dont access `self` after that return messages, next_activities @api.readonly def action_close_dialog(self): return {'type': 'ir.actions.act_window_close'} @api.readonly def action_open_document(self): """ Opens the related record based on the model and ID """ self.ensure_one() return { 'res_id': self.res_id, 'res_model': self.res_model, 'target': 'current', 'type': 'ir.actions.act_window', 'view_mode': 'form', } def action_snooze(self): today = date.today() for activity in self: if activity.active: activity.date_deadline = max(activity.date_deadline, today) + timedelta(days=7) def action_cancel(self): for activity in self: if activity.active: activity.unlink() @api.readonly def activity_format(self): return Store(self).get_result() def _to_store(self, store: Store): for activity in self: data = activity.read()[0] data["mail_template_ids"] = [ {"id": mail_template.id, "name": mail_template.name} for mail_template in activity.mail_template_ids ] data["attachment_ids"] = Store.many(activity.attachment_ids, fields=["name"]) data["persona"] = Store.one(activity.user_id.partner_id) store.add(activity, data) @api.readonly @api.model def get_activity_data(self, res_model, domain, limit=None, offset=0, fetch_done=False): """ Get aggregate data about records and their activities. The goal is to fetch and compute aggregated data about records and their activities to display them in the activity views and the chatter. For example, the activity view displays it as a table with columns and rows being respectively the activity_types and the activity_res_ids, and the grouped_activities being the table entries with the aggregated data. :param str res_model: model of the records to fetch :param list domain: record search domain :param int limit: maximum number of records to fetch :param int offset: offset of the first record to fetch :param bool fetch_done: determines if "done" activities are integrated in the aggregated data or not. :return dict: {'activity_types': dict of activity type info {id: int, name: str, mail_template: list of {id:int, name:str}, keep_done: bool} 'activity_res_ids': list of record id ordered by closest date (deadline for ongoing activities, and done date for done activities) 'grouped_activities': dict res_id -> activity_type_id -> aggregated info as: count_by_state dict: mapping state to count (ex.: 'planned': 2) ids list: activity ids for the res_id and activity_type_id reporting_date str: aggregated date of the related activities as oldest deadline of ongoing activities if there are any or most recent date done of completed activities state dict: aggregated state of the related activities user_assigned_ids list: activity responsible id ordered by closest deadline of the related activities attachments_info: dict with information about the attachments {'count': int, 'most_recent_id': int, 'most_recent_name': str} } """ user_tz = self.user_id.sudo().tz DocModel = self.env[res_model] Activity = self.env['mail.activity'] # 1. Retrieve all ongoing and completed activities according to the parameters activity_types = self.env['mail.activity.type'].search([('res_model', 'in', (res_model, False))]) fetch_done = fetch_done and activity_types.filtered('keep_done') activity_domain = [('res_model', '=', res_model)] is_filtered = domain or limit or offset if is_filtered: activity_domain.append(('res_id', 'in', DocModel._search(domain or [], offset, limit, DocModel._order) if is_filtered else [])) all_activities = Activity.with_context(active_test=not fetch_done).search( activity_domain, order='date_done DESC, date_deadline ASC') all_ongoing = all_activities.filtered('active') all_completed = all_activities.filtered(lambda act: not act.active) # 2. Get attachment of completed activities if all_completed: attachment_ids = all_completed.attachment_ids.ids attachments_by_id = { a['id']: a for a in self.env['ir.attachment'].search_read([['id', 'in', attachment_ids]], ['create_date', 'name']) } if attachment_ids else {} else: attachments_by_id = {} # 3. Group activities per records and activity type grouped_completed = {group: Activity.browse([v.id for v in values]) for group, values in groupby(all_completed, key=lambda a: (a.res_id, a.activity_type_id))} grouped_ongoing = {group: Activity.browse([v.id for v in values]) for group, values in groupby(all_ongoing, key=lambda a: (a.res_id, a.activity_type_id))} # 4. Filter out unreadable records res_id_type_tuples = grouped_ongoing.keys() | grouped_completed.keys() if not is_filtered: filtered = set(DocModel.search([('id', 'in', [r[0] for r in res_id_type_tuples])]).ids) res_id_type_tuples = list(filter(lambda r: r[0] in filtered, res_id_type_tuples)) # 5. Format data res_id_to_date_done = {} res_id_to_deadline = {} grouped_activities = defaultdict(dict) for res_id_tuple in res_id_type_tuples: res_id, activity_type_id = res_id_tuple ongoing = grouped_ongoing.get(res_id_tuple, Activity) completed = grouped_completed.get(res_id_tuple, Activity) activities = ongoing | completed # As completed is sorted on date_done DESC, we take here the max date_done date_done = completed and completed[0].date_done # As ongoing is sorted on date_deadline ASC, we take here the min date_deadline date_deadline = ongoing and ongoing[0].date_deadline if date_deadline and (res_id not in res_id_to_deadline or date_deadline < res_id_to_deadline[res_id]): res_id_to_deadline[res_id] = date_deadline if date_done and (res_id not in res_id_to_date_done or date_done > res_id_to_date_done[res_id]): res_id_to_date_done[res_id] = date_done # As ongoing is sorted on date_deadline, we get assignees on activity with oldest deadline first user_assigned_ids = ongoing.user_id.ids attachments = [attachments_by_id[attach.id] for attach in completed.attachment_ids] grouped_activities[res_id][activity_type_id.id] = { 'count_by_state': dict(Counter( self._compute_state_from_date(act.date_deadline, user_tz) if act.active else 'done' for act in activities)), 'ids': activities.ids, 'reporting_date': ongoing and date_deadline or date_done or None, 'state': self._compute_state_from_date(date_deadline, user_tz) if ongoing else 'done', 'user_assigned_ids': user_assigned_ids, } if attachments: most_recent_attachment = max(attachments, key=lambda a: (a['create_date'], a['id'])) grouped_activities[res_id][activity_type_id.id]['attachments_info'] = { 'most_recent_id': most_recent_attachment['id'], 'most_recent_name': most_recent_attachment['name'], 'count': len(attachments), } # Get record ids ordered by oldest deadline (urgent one first) ongoing_res_ids = sorted(res_id_to_deadline, key=lambda item: res_id_to_deadline[item]) # Get record ids with only completed activities ordered by date done reversed (most recently done first) completed_res_ids = [ res_id for res_id in sorted( res_id_to_date_done, key=lambda item: res_id_to_date_done[item], reverse=True ) if res_id not in res_id_to_deadline ] return { 'activity_res_ids': ongoing_res_ids + completed_res_ids, 'activity_types': [ { 'id': activity_type.id, 'keep_done': activity_type.keep_done, 'name': activity_type.name, 'template_ids': [ {'id': mail_template_id.id, 'name': mail_template_id.name} for mail_template_id in activity_type.mail_template_ids ], } for activity_type in activity_types ], 'grouped_activities': grouped_activities, } # ---------------------------------------------------------------------- # TOOLS # ---------------------------------------------------------------------- def _classify_by_model(self): """ To ease batch computation of various activities related methods they are classified by model. Activities not linked to a valid record through res_model / res_id are ignored. :return dict: for each model having at least one activity in self, have a sub-dict containing * activities: activities related to that model; * record IDs: record linked to the activities of that model, in same order; """ data_by_model = {} for activity in self.filtered(lambda act: act.res_model and act.res_id): if activity.res_model not in data_by_model: data_by_model[activity.res_model] = { 'activities': self.env['mail.activity'], 'record_ids': [], } data_by_model[activity.res_model]['activities'] += activity data_by_model[activity.res_model]['record_ids'].append(activity.res_id) return data_by_model def _prepare_next_activity_values(self): """ Prepare the next activity values based on the current activity record and applies _onchange methods :returns a dict of values for the new activity """ self.ensure_one() vals = self.default_get(self.fields_get()) vals.update({ 'previous_activity_type_id': self.activity_type_id.id, 'res_id': self.res_id, 'res_model': self.res_model, 'res_model_id': self.env['ir.model']._get(self.res_model).id, }) virtual_activity = self.new(vals) virtual_activity._onchange_previous_activity_type_id() virtual_activity._onchange_activity_type_id() return virtual_activity._convert_to_write(virtual_activity._cache) @api.autovacuum def _gc_delete_old_overdue_activities(self): """ Delete old overdue activities - If the config_parameter is deleted or 0, the user doesn't want to run this gc routine - If the config_parameter is set to a negative number, it's an invalid value, we skip the gc routine - If the config_parameter is set to a positive number, we delete only overdue activities which deadline is older than X years """ year_threshold = int(self.env['ir.config_parameter'].sudo().get_param('mail.activity.gc.delete_overdue_years', 0)) if year_threshold == 0: _logger.warning("The ir.config_parameter 'mail.activity.gc.delete_overdue_years' is missing or set to 0. Skipping gc routine.") return if year_threshold < 0: _logger.warning("The ir.config_parameter 'mail.activity.gc.delete_overdue_years' is set to a negative number " "which is invalid. Skipping gc routine.") return deadline_threshold_dt = datetime.now() - relativedelta(years=year_threshold) old_overdue_activities = self.env['mail.activity'].search([('date_deadline', '<', deadline_threshold_dt)], limit=10_000) old_overdue_activities.unlink()