[IMP] studies_base:
move study_author
This commit is contained in:
13
studies_base/models/study_author.py
Normal file
13
studies_base/models/study_author.py
Normal file
@@ -0,0 +1,13 @@
|
||||
# -*- 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")
|
||||
|
Reference in New Issue
Block a user