17 lines
510 B
Python
17 lines
510 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
{
|
||
|
'name': "OdooBot - HR",
|
||
|
'summary': """Bridge module between hr and mailbot.""",
|
||
|
'description': """This module adds the OdooBot state and notifications in the user form modified by hr.""",
|
||
|
'website': "https://www.odoo.com/app/discuss",
|
||
|
'category': 'Productivity/Discuss',
|
||
|
'version': '1.0',
|
||
|
'depends': ['mail_bot', 'hr'],
|
||
|
'installable': True,
|
||
|
'auto_install': True,
|
||
|
'data': [
|
||
|
'views/res_users_views.xml',
|
||
|
],
|
||
|
'license': 'LGPL-3',
|
||
|
}
|