forked from Mapan/odoo17e
19 lines
494 B
Python
19 lines
494 B
Python
# -*- encoding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': "Project Time Off",
|
|
'version': '1.0',
|
|
'category': 'Hidden',
|
|
'summary': "Project and task integration with holidays",
|
|
'description': """
|
|
Project and task integration with holidays
|
|
""",
|
|
'depends': ['project_enterprise', 'hr_holidays_gantt'],
|
|
'data': [
|
|
'views/project_task_views.xml',
|
|
],
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|