[ADD] survey_extra_fields : file question type
Some checks failed
pre-commit / pre-commit (pull_request) Failing after 1m39s

This commit is contained in:
2026-02-17 12:27:22 +01:00
parent e1c2be8939
commit 0d4a91f1b7
14 changed files with 626 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")]
)