[NEW] studies_base
This commit is contained in:
12
studies_base/models/study_participant_progress_status.py
Normal file
12
studies_base/models/study_participant_progress_status.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from odoo import api, fields, models, _
|
||||
from odoo import osv
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class StudyParticipantProgressStatus(models.Model):
|
||||
_name = "study.participant.progress.status"
|
||||
|
||||
name = fields.Char("Name")
|
||||
sequence = fields.Integer("Sequence")
|
||||
|
Reference in New Issue
Block a user