Files
study-tools/studies_base/models/study_author.py
clementthomas 4071957068 [IMP] studies_base:
move study_author
2024-07-30 11:46:12 +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 StudyAuthor(models.Model):
_name = "study.author"
name = fields.Char("Name")
value = fields.Char("Value")
sequence = fields.Integer("Sequence")