mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 10:19:09 +02:00
9 lines
162 B
Python
Executable File
9 lines
162 B
Python
Executable File
from odoo import fields, api, models
|
|
|
|
|
|
class Regular(models.Model):
|
|
_inherit = 'hr.attendance'
|
|
|
|
regularization = fields.Boolean(string="Regularization")
|
|
|