mirror of
https://github.com/bringout/oca-crm.git
synced 2026-04-19 10:32:06 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
239 B
Python
10 lines
239 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 fields, models
|
|
|
|
|
|
class CrmLead(models.Model):
|
|
_inherit = "project.task"
|
|
|
|
lead_id = fields.Many2one("crm.lead")
|