summaryrefslogtreecommitdiff
path: root/addons/hr_org_chart/__manifest__.py
blob: d0faed4b40ed22fb61288727aa20a3bad1d33db7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- 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'],
    'auto_install': True,
    'data': [
        'views/hr_templates.xml',
        'views/hr_views.xml'
    ],
    'qweb': [
        'static/src/xml/hr_org_chart.xml',
    ],
    'license': 'LGPL-3',
}