mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
[IMP] hr_payroll_overtime: implement exempt from overtime on contract
This commit is contained in:
8
hr_payroll_overtime/models/hr_contract.py
Normal file
8
hr_payroll_overtime/models/hr_contract.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class HrContract(models.Model):
|
||||
_inherit = 'hr.contract'
|
||||
|
||||
is_overtime_exempt = fields.Boolean(string='Overtime Exempt',
|
||||
help='e.g. Agriculture or farm work exempt under the US FLSA.')
|
||||
Reference in New Issue
Block a user