1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/appointment_crm/models/appointment_invite.py
2024-12-10 09:04:09 +07:00

13 lines
453 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class AppointmentInviteCrm(models.Model):
_inherit = "appointment.invite"
opportunity_id = fields.Many2one('crm.lead', "Opportunity/Lead",
help="Link an opportunity/lead to the appointment invite created.\n"
"Used when creating an invitation from the Meeting action in the crm form view.")