14 lines
320 B
Python
14 lines
320 B
Python
# -*- coding: utf-8 -*-
|
|
from odoo import api, fields, models, _
|
|
from odoo import osv
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class StudyQuestionnaireStatus(models.Model):
|
|
_name = "study.questionnaire.status"
|
|
|
|
name = fields.Char("Name")
|
|
value = fields.Char("Value")
|
|
sequence = fields.Integer("Sequence")
|
|
|