13 lines
320 B
Python
13 lines
320 B
Python
# Copyright 2023 Tecnativa - David Vidal
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
from odoo import fields, models
|
|
|
|
|
|
class SurveySurvey(models.Model):
|
|
_inherit = "survey.survey"
|
|
|
|
generate_registration = fields.Boolean(
|
|
help="Generate event registration for selected event",
|
|
)
|
|
|