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.
This commit is contained in:
Jared Kipe
2018-05-14 16:08:30 -07:00
parent 8137950756
commit 1dea2b7711
9 changed files with 209 additions and 1 deletions

View File

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