Files
tra_backend/hr_employee/__manifest__.py
2020-07-22 12:24:24 +05:30

37 lines
882 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'HR Employees',
'version': '1.1',
'category': 'Human Resources/Employees',
'sequence': 75,
'summary': 'Centralize employee information',
'description': "",
'website': 'https://www.odoo.com/page/employees',
'images': [
'images/hr_department.jpeg',
'images/hr_employee.jpeg',
'images/hr_job_position.jpeg',
'static/src/img/default_image.png',
],
'depends': [
'base_setup',
'mail',
'resource',
'web',
'mail_bot',
],
'data': [
'views/hr_job_views.xml',
'views/hr_views.xml',
],
'demo': [
],
'installable': True,
'application': True,
'auto_install': False,
'qweb': ['static/src/xml/hr_templates.xml'],
}