769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
25 lines
541 B
Python
25 lines
541 B
Python
# -*- 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'],
|
|
'data': [
|
|
'views/hr_templates.xml',
|
|
'views/hr_views.xml'
|
|
],
|
|
'qweb': [
|
|
'static/src/xml/hr_org_chart.xml',
|
|
]
|
|
}
|