1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/hr_attendance_gantt/__manifest__.py
2024-12-10 09:04:09 +07:00

25 lines
664 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "Attendance Gantt",
'summary': """Gantt view for Attendance""",
'description': """
Gantt view for Attendance
""",
'category': 'Human Resources/Attendances',
'version': '1.0',
'depends': ['hr_attendance', 'hr_gantt'],
'auto_install': True,
'data': [
'views/hr_attendance_gantt.xml'
],
'assets': {
'web.assets_backend': [
'hr_attendance_gantt/static/src/**/*',
],
'web.qunit_suite_tests': [
'hr_attendance_gantt/static/tests/**/*',
],
},
'license': 'OEEL-1',
}