From 17e0d5231903083063214e66cb7334f5423027ef Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= <tde@odoo.com>
Date: Thu, 19 Jul 2018 16:14:15 +0200
Subject: [PATCH] [IMP] mail: limit next / previous activities to same kind

When creating an activity type flow using recommended next activities we
should limit the available activity types by model. They should be either
generic either of the same kind. Otherwise you could have inconsistent
results.

This commit is linked to task ID 1844644 and PR #25843.
---
 addons/mail/models/mail_activity.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/addons/mail/models/mail_activity.py b/addons/mail/models/mail_activity.py
index 5c86976ba0e1..83feb875a666 100644
--- a/addons/mail/models/mail_activity.py
+++ b/addons/mail/models/mail_activity.py
@@ -46,9 +46,11 @@ class MailActivityType(models.Model):
              ' and not available when managing activities for other models.')
     next_type_ids = fields.Many2many(
         'mail.activity.type', 'mail_activity_rel', 'activity_id', 'recommended_id',
+        domain="['|', ('res_model_id', '=', False), ('res_model_id', '=', res_model_id)]",
         string='Recommended Next Activities')
     previous_type_ids = fields.Many2many(
         'mail.activity.type', 'mail_activity_rel', 'recommended_id', 'activity_id',
+        domain="['|', ('res_model_id', '=', False), ('res_model_id', '=', res_model_id)]",
         string='Preceding Activities')
     category = fields.Selection([
         ('default', 'Other')], default='default',
-- 
GitLab