[IMP] studies_base:

split studies_base in two modules
This commit is contained in:
clementthomas
2024-07-19 15:24:48 +02:00
parent 65d637a900
commit bd8a9fc4af
28 changed files with 132 additions and 361 deletions

View File

@@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
from odoo import api, fields, models, _
from odoo import osv
from odoo.exceptions import UserError
class StudyKeyword(models.Model):
_name = "study.keyword"
name = fields.Char("Name")