Files
suite/hr_payroll_overtime/__manifest__.py
Jared Kipe af837721f5 [IMP] hr_payroll_overtime: refactor calculation to allow 'recursion' or overtime on overtime
Example.  Lets say you have 8hr/day overtime at 1.5x, and 12hr/day overtime at 2x.
Now you can create a 2x overtime rules for 12 hours/day, and use it as the overtime rules for the original overtime worktype.
2021-10-07 16:14:59 +00:00

20 lines
523 B
Python

{
'name': 'Payroll Overtime',
'description': 'Provide mechanisms to calculate overtime.',
'version': '13.0.1.0.1',
'website': 'https://hibou.io/',
'author': 'Hibou Corp. <hello@hibou.io>',
'license': 'AGPL-3',
'category': 'Human Resources',
'data': [
'security/ir.model.access.csv',
'data/overtime_data.xml',
'views/hr_work_entry_views.xml',
'views/resource_calendar_views.xml',
],
'depends': [
'hr_payroll',
'hr_work_entry',
],
}