flectra/addons/hr_org_chart/__manifest__.py

26 lines
577 B
Python
Raw Normal View History

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