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

13 lines
290 B
Python

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