[15.0][MIG] mail_activity_partner: Migration to 15.0
This commit is contained in:
parent
38b4559d3f
commit
e72c1565ba
@ -3,7 +3,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Mail Activity Partner",
|
"name": "Mail Activity Partner",
|
||||||
"summary": "Add Partner to Activities",
|
"summary": "Add Partner to Activities",
|
||||||
"version": "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
"development_status": "Beta",
|
"development_status": "Beta",
|
||||||
"category": "Social Network",
|
"category": "Social Network",
|
||||||
"website": "https://github.com/OCA/social",
|
"website": "https://github.com/OCA/social",
|
||||||
|
@ -1 +1,2 @@
|
|||||||
* Adrià Gil Sorribes (adria.gil@forgeflow.com)
|
* Adrià Gil Sorribes (adria.gil@forgeflow.com)
|
||||||
|
* Joan Mateu Jordi (joan.mateu@forgeflow.com)
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
# Copyright 2018 ForgeFlow S.L.
|
# Copyright 2018 ForgeFlow S.L.
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||||
from odoo.tests.common import SavepointCase
|
from odoo.tests.common import TransactionCase
|
||||||
|
|
||||||
|
|
||||||
class TestMailActivityPartner(SavepointCase):
|
class TestMailActivityPartner(TransactionCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpClass(cls):
|
def setUpClass(cls):
|
||||||
super().setUpClass()
|
super().setUpClass()
|
||||||
@ -32,15 +32,16 @@ class TestMailActivityPartner(SavepointCase):
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
cls.partner_ir_model = cls.env["ir.model"]._get("res.partner")
|
cls.partner_model = cls.env["ir.model"]._get("res.partner")
|
||||||
|
|
||||||
activity_type_model = cls.env["mail.activity.type"]
|
activity_type_model = cls.env["mail.activity.type"]
|
||||||
cls.activity1 = activity_type_model.create(
|
cls.activity1 = activity_type_model.create(
|
||||||
{
|
{
|
||||||
"name": "Initial Contact",
|
"name": "Initial Contact",
|
||||||
"delay_count": 5,
|
"delay_count": 5,
|
||||||
|
"delay_unit": "days",
|
||||||
"summary": "ACT 1 : Presentation, barbecue, ... ",
|
"summary": "ACT 1 : Presentation, barbecue, ... ",
|
||||||
"res_model_id": cls.partner_ir_model.id,
|
"res_model": cls.partner_model.model,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
cls.activity2 = activity_type_model.create(
|
cls.activity2 = activity_type_model.create(
|
||||||
@ -48,7 +49,7 @@ class TestMailActivityPartner(SavepointCase):
|
|||||||
"name": "Call for Demo",
|
"name": "Call for Demo",
|
||||||
"delay_count": 6,
|
"delay_count": 6,
|
||||||
"summary": "ACT 2 : I want to show you my ERP !",
|
"summary": "ACT 2 : I want to show you my ERP !",
|
||||||
"res_model_id": cls.partner_ir_model.id,
|
"res_model": cls.partner_model.model,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -78,7 +79,7 @@ class TestMailActivityPartner(SavepointCase):
|
|||||||
"activity_type_id": self.activity1.id,
|
"activity_type_id": self.activity1.id,
|
||||||
"note": "Partner activity 1.",
|
"note": "Partner activity 1.",
|
||||||
"res_id": self.partner_01.id,
|
"res_id": self.partner_01.id,
|
||||||
"res_model_id": self.partner_ir_model.id,
|
"res_model_id": self.partner_model.id,
|
||||||
"user_id": self.user_admin.id,
|
"user_id": self.user_admin.id,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
@ -92,7 +93,7 @@ class TestMailActivityPartner(SavepointCase):
|
|||||||
"activity_type_id": self.activity2.id,
|
"activity_type_id": self.activity2.id,
|
||||||
"note": "Partner activity 10.",
|
"note": "Partner activity 10.",
|
||||||
"res_id": self.partner_10.id,
|
"res_id": self.partner_10.id,
|
||||||
"res_model_id": self.partner_ir_model.id,
|
"res_model_id": self.partner_model.id,
|
||||||
"user_id": self.employee.id,
|
"user_id": self.employee.id,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -54,7 +54,7 @@
|
|||||||
<field name="model">mail.activity</field>
|
<field name="model">mail.activity</field>
|
||||||
<field name="inherit_id" ref="mail_activity_board.mail_activity_view_search" />
|
<field name="inherit_id" ref="mail_activity_board.mail_activity_view_search" />
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<xpath expr='//field[@name="res_model_id"]' position='before'>
|
<xpath expr='//field[@name="res_model"]' position='before'>
|
||||||
<field name="partner_id" />
|
<field name="partner_id" />
|
||||||
<field name="commercial_partner_id" />
|
<field name="commercial_partner_id" />
|
||||||
</xpath>
|
</xpath>
|
||||||
|
Loading…
Reference in New Issue
Block a user