9 lines
232 B
Python
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")
|