2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'HR Org Chart',
|
2018-01-16 12:05:52 +01:00
|
|
|
'author' : 'Odoo S.A',
|
2018-01-16 06:58:15 +01:00
|
|
|
'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',
|
|
|
|
]
|
|
|
|
}
|