From 4ae82483ae1cae5c20bd06849049b90092e0dbb6 Mon Sep 17 00:00:00 2001 From: VPA Date: Thu, 4 Jul 2024 17:47:57 +0200 Subject: [PATCH] [MIG] helpdesk_mgmt_sla : Migration to 15.0.1.0.0 --- helpdesk_mgmt_sla/__manifest__.py | 2 +- helpdesk_mgmt_sla/tests/common.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/helpdesk_mgmt_sla/__manifest__.py b/helpdesk_mgmt_sla/__manifest__.py index 70735d3489..8546b5f980 100644 --- a/helpdesk_mgmt_sla/__manifest__.py +++ b/helpdesk_mgmt_sla/__manifest__.py @@ -7,7 +7,7 @@ "website": "https://github.com/OCA/helpdesk", "license": "AGPL-3", "category": "After-Sales", - "version": "14.0.2.0.1", + "version": "15.0.1.0.0", "depends": ["base", "helpdesk_mgmt", "resource"], "data": [ "data/helpdesk_sla_cron.xml", diff --git a/helpdesk_mgmt_sla/tests/common.py b/helpdesk_mgmt_sla/tests/common.py index 8aa6d4c117..7b77b358a7 100644 --- a/helpdesk_mgmt_sla/tests/common.py +++ b/helpdesk_mgmt_sla/tests/common.py @@ -25,6 +25,8 @@ def setUpClass(cls): "use_sla": True, } ) + cls.stage1.team_ids = [(6, 0, [cls.team1.id, cls.team2.id])] + cls.stage2.team_ids = [(6, 0, [cls.team1.id, cls.team2.id])] cls.category1 = cls.env["helpdesk.ticket.category"].create( {"name": "Category One"} )