2018-01-16 06:58:15 +01:00
|
|
|
# -*- encoding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'Recruitment Process',
|
2018-01-16 12:05:52 +01:00
|
|
|
'author' : 'Odoo S.A',
|
2018-01-16 06:58:15 +01:00
|
|
|
'version': '1.0',
|
|
|
|
'category': 'Human Resources',
|
|
|
|
'sequence': 90,
|
|
|
|
'summary': 'Jobs, Recruitment, Applications, Job Interviews',
|
|
|
|
'description': "",
|
2018-01-16 11:34:37 +01:00
|
|
|
'website': 'https://flectrahq.com/page/recruitment',
|
2018-01-16 06:58:15 +01:00
|
|
|
'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,
|
|
|
|
}
|