26 lines
577 B
Python
26 lines
577 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'HR Org Chart',
|
|
'author' : 'Odoo S.A',
|
|
'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',
|
|
]
|
|
}
|