Files
study-tools/studies_base/models/study_status.py
clementthomas bd8a9fc4af [IMP] studies_base:
split studies_base in two modules
2024-07-19 15:24:48 +02:00

14 lines
293 B
Python

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