odoo_18_Education_management/models/fee_element.py

9 lines
232 B
Python
Raw Normal View History

2025-08-04 07:27:45 +00:00
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")