mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 18:29:08 +02:00
9 lines
192 B
Python
9 lines
192 B
Python
from odoo import models, fields
|
|
|
|
|
|
class HrContractOvertime(models.Model):
|
|
_inherit = 'hr.contract'
|
|
|
|
over_hour = fields.Monetary('Hour Wage')
|
|
over_day = fields.Monetary('Day Wage')
|