34 lines
958 B
Python
34 lines
958 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Time Off in Payslips',
|
|
'version': '1.0',
|
|
'category': 'Human Resources/Payroll',
|
|
'sequence': 95,
|
|
'depends': ['hr_work_entry_holidays', 'hr_payroll'],
|
|
'data': [
|
|
'security/hr_payroll_holidays_security.xml',
|
|
'views/res_config_settings_views.xml',
|
|
'views/hr_leave_views.xml',
|
|
'views/hr_allocation_views.xml',
|
|
'views/hr_payslip_run_views.xml',
|
|
'views/hr_payslip_views.xml',
|
|
'data/mail_activity_data.xml',
|
|
'data/ir_actions_server_data.xml',
|
|
'data/hr_payroll_dashboard_warning_data.xml',
|
|
],
|
|
'demo': [
|
|
'data/demo.xml',
|
|
],
|
|
'auto_install': True,
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'hr_payroll_holidays/static/src/**/*',
|
|
],
|
|
'web.assets_backend_lazy': [
|
|
],
|
|
},
|
|
'license': 'OEEL-1',
|
|
}
|