[ADD] survey_extra_fields : file question type

This commit is contained in:
2026-02-17 12:27:22 +01:00
parent e1c2be8939
commit d0bcaf2ef6
14 changed files with 587 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from odoo import fields, models
class SurveyQuestion(models.Model):
_inherit = "survey.question"
question_type = fields.Selection(
selection_add=[("file", "File")]
)