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