flectra/addons/hr_recruitment/__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

37 lines
994 B
Python

# -*- encoding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Recruitment Process',
'version': '1.0',
'category': 'Human Resources',
'sequence': 90,
'summary': 'Jobs, Recruitment, Applications, Job Interviews',
'description': "",
'website': 'https://www.odoo.com/page/recruitment',
'depends': [
'hr',
'calendar',
'fetchmail',
'utm',
'document',
'web_tour',
],
'data': [
'security/hr_recruitment_security.xml',
'security/ir.model.access.csv',
'data/hr_recruitment_data.xml',
'views/hr_recruitment_views.xml',
'views/res_config_settings_views.xml',
'views/hr_recruitment_templates.xml',
'views/hr_department_views.xml',
'views/hr_job_views.xml',
],
'demo': [
'data/hr_recruitment_demo.xml',
],
'installable': True,
'auto_install': False,
'application': True,
}