Files
suite/hr_payroll_attendance/hr_contract.py
Jared Kipe 7112d8a202 Initial commit of hr_payroll_attendance and hr_payroll_attendance_holidays modules for 11.0.
The purpose of this new functionality is to better distinguish between timesheets and attendance, as well as preventing the stock "salaried" time computations from working.
2019-03-12 10:39:56 -07:00

8 lines
188 B
Python
Executable File

from odoo import models, fields
class HrContract(models.Model):
_inherit = 'hr.contract'
paid_hourly_attendance = fields.Boolean(string="Paid Hourly Attendance", default=False)