mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
9 lines
266 B
Python
9 lines
266 B
Python
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.')
|