mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 17:12:00 +02:00
24 lines
783 B
Python
24 lines
783 B
Python
# Copyright 2023 Moduon Team S.L.
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl-3.0)
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class CrmLead(models.Model):
|
|
_inherit = "crm.lead"
|
|
|
|
task_ids = fields.One2many("project.task", "lead_id")
|
|
task_count = fields.Integer("#Task", compute="_compute_task_count")
|
|
|
|
@api.depends("task_ids")
|
|
def _compute_task_count(self):
|
|
for lead in self:
|
|
lead.task_count = len(lead.task_ids)
|
|
|
|
def action_tasks(self):
|
|
self.ensure_one()
|
|
ctx = self._context.copy()
|
|
action = self.env.ref("project.action_view_task").sudo().read()[0]
|
|
ctx.update({"default_lead_id": self.id})
|
|
action.update({"context": ctx, "domain": [("lead_id", "=", self.id)]})
|
|
return action
|