oca-ocb-hr/odoo-bringout-oca-ocb-hr_holidays_attendance/hr_holidays_attendance/__manifest__.py
Ernad Husremovic e1d89e11e3 19.0 vanilla
2026-03-09 09:31:00 +01:00

30 lines
974 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "HR Attendance Holidays",
'summary': """Attendance Holidays""",
'category': 'Human Resources',
'description': """
Convert employee's extra hours to leave allocations.
""",
'version': '1.0',
'depends': ['hr_attendance', 'hr_holidays'],
'auto_install': True,
'data': [
'security/ir.model.access.csv',
'views/hr_leave_allocation_views.xml',
'views/hr_leave_type_views.xml',
'views/hr_leave_views.xml',
'views/hr_employee_views.xml',
'views/hr_leave_accrual_level_views.xml',
'views/hr_leave_attendance_report_views.xml',
'views/hr_attendance_overtime_views.xml',
'data/hr_holidays_attendance_data.xml',
],
'assets': {
'web.assets_backend': [
'hr_holidays_attendance/static/src/**/*',
],
},
'author': 'Odoo S.A.',
'license': 'LGPL-3',
}