add education module

This commit is contained in:
2025-02-21 18:00:17 +07:00
parent 73cb3bd36c
commit 2b170da354
12 changed files with 175 additions and 0 deletions
@@ -0,0 +1,8 @@
from odoo import fields, models
class EductionClassGroup(models.Model):
_name = 'education.class.group'
_description = 'Education Class Group'
_order = 'sequence'
class_ids = fields.One2many('education.class', 'class_group_id', string='Class of Groups')