mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 21:32:00 +02:00
Initial commit: OCA Technical packages (595 packages)
This commit is contained in:
commit
2cc02aac6e
24950 changed files with 2318079 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
from . import test_crm_project_task
|
||||
|
|
@ -0,0 +1,74 @@
|
|||
# Copyright 2023 Moduon Team S.L.
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl-3.0)
|
||||
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.tests.common import TransactionCase
|
||||
|
||||
from odoo.addons.mail.tests.common import mail_new_test_user
|
||||
|
||||
|
||||
class TestCrmProjectTask(TransactionCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.company = cls.env.user.company_id
|
||||
cls.user_salesman = mail_new_test_user(
|
||||
cls.env,
|
||||
login="user_test",
|
||||
name="User Test",
|
||||
email="user_test@test.example.com",
|
||||
company_id=cls.company.id,
|
||||
groups="sales_team.group_sale_salesman",
|
||||
)
|
||||
cls.partner = cls.env["res.partner"].create(
|
||||
{
|
||||
"name": "Partner Test",
|
||||
}
|
||||
)
|
||||
cls.lead = cls.env["crm.lead"].create(
|
||||
{
|
||||
"name": "Test Lead",
|
||||
"type": "lead",
|
||||
"partner_id": cls.partner.id,
|
||||
"user_id": cls.user_salesman.id,
|
||||
}
|
||||
)
|
||||
cls.project = cls.env["project.project"].create(
|
||||
{
|
||||
"name": "Test Project",
|
||||
"description": "Test Description",
|
||||
}
|
||||
)
|
||||
cls.task_name = "Task Test"
|
||||
cls.task_description = "Line1</br>Line2"
|
||||
|
||||
def test_crm_create_task(self):
|
||||
# Error without project default
|
||||
self.company.crm_default_project_id = False
|
||||
wizard = (
|
||||
self.env["crm.create.task"]
|
||||
.with_user(self.user_salesman)
|
||||
.with_context(active_model="crm.lead", active_id=self.lead.id)
|
||||
.create(
|
||||
{
|
||||
"task_name": self.task_name,
|
||||
"description": self.task_description,
|
||||
}
|
||||
)
|
||||
)
|
||||
with self.assertRaises(UserError):
|
||||
wizard.create_task()
|
||||
# Set project default
|
||||
self.company.crm_default_project_id = self.project
|
||||
action = wizard.create_task()
|
||||
task = self.env["project.task"].browse(action["res_id"])
|
||||
self.assertEqual(task.name, self.task_name)
|
||||
self.assertEqual(task.project_id, self.company.crm_default_project_id)
|
||||
self.assertEqual(task.partner_id, self.partner)
|
||||
self.assertEqual(task.lead_id, self.lead)
|
||||
# Check action tasks
|
||||
action = self.lead.action_tasks()
|
||||
tasks = self.env["project.task"].search(action["domain"])
|
||||
tasks_lead = tasks.mapped("lead_id")
|
||||
self.assertEqual(self.lead, tasks_lead)
|
||||
self.assertEqual(len(tasks), self.lead.task_count)
|
||||
Loading…
Add table
Add a link
Reference in a new issue