init
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
from odoo import fields, api, models
|
||||
|
||||
class EductionSchool(models.Model):
|
||||
_name = 'education.school'
|
||||
_description = 'School'
|
||||
|
||||
name = fields.Char(string='Name', translate=True, required=True)
|
||||
code = fields.Char(string='Code', copy=False)
|
||||
class_ids = fields.One2many("education.class", "school_id", string="Classes")
|
||||
Reference in New Issue
Block a user