13 lines
281 B
Python
13 lines
281 B
Python
# -*- coding: utf-8 -*-
|
|
from odoo import api, fields, models, _
|
|
from odoo import osv
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class StudyParticipantState(models.Model):
|
|
_name = "study.participant.state"
|
|
|
|
name = fields.Char("Name")
|
|
sequence = fields.Integer("Sequence")
|
|
|