flectra/addons/hr_org_chart/__manifest__.py
flectra-admin 769eafb483 [INIT] Inception of Flectra from Odoo
Flectra is Forked from Odoo v11 commit : (6135e82d73)
2018-01-16 11:45:59 +05:30

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',
]
}