odoo_18_Education_management/models/fee_element.py

9 lines
232 B
Python

from odoo import models, fields
class FeeElement(models.Model):
_name = 'school.fee.element'
_description = 'Fee Element'
name = fields.Char("Fee Component", required=True)
description = fields.Text("Description")