[ADD] survey_event_speaker_generation

This commit is contained in:
clementthomas
2023-09-19 15:28:26 +02:00
parent d8b820902a
commit affaf785ee
7 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# 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_speaker = fields.Boolean(
help="Generate speaker for selected event",
)