[IMP] hr_payroll_overtime: implement exempt from overtime on contract

This commit is contained in:
Jared Kipe
2020-12-10 09:40:06 -08:00
parent 60fe0cc4a2
commit 75d6c97e69
6 changed files with 56 additions and 1 deletions

View 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.')