1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'HR Org Chart',
'category': 'Hidden',
'version': '1.0',
'description':
"""
Org Chart Widget for HR
=======================
This module extend the employee form with a organizational chart.
(N+1, N+2, direct subordinates)
""",
'depends': ['hr', 'web_hierarchy'],
'auto_install': ['hr'],
'data': [
'views/hr_department_views.xml',
'views/hr_views.xml',
'views/hr_employee_public_views.xml',
'views/hr_org_chart_menus.xml',
],
'assets': {
'web._assets_primary_variables': [
'hr_org_chart/static/src/scss/variables.scss',
],
'web.assets_backend': [
'hr_org_chart/static/src/fields/*',
],
'web.assets_backend_lazy': [
'hr_org_chart/static/src/views/**/*',
],
'web.assets_unit_tests': [
'hr_org_chart/static/tests/**/*',
],
},
'license': 'LGPL-3',
}
|