forked from Mapan/odoo17e
9 lines
202 B
Python
9 lines
202 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class CrmLead(models.Model):
|
|
_name = "crm.lead"
|
|
_inherit = ["crm.lead", "voip.queue.mixin"]
|