[IMP] studies_base:

Studies vue + progress status and state and status fields, views, and values
This commit is contained in:
clementthomas
2024-07-17 12:20:25 +02:00
parent d7735363ae
commit 10b71eb44f
16 changed files with 454 additions and 81 deletions

View File

@@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
from odoo import api, fields, models, _
from odoo import osv
from odoo.exceptions import UserError
class StudyQuestionnaireProgressStatus(models.Model):
_name = "study.questionnaire.progress.status"
name = fields.Char("Name")
value = fields.Char("Value")
sequence = fields.Integer("Sequence")