mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-26 21:52:02 +02:00
27 lines
717 B
Python
27 lines
717 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Skills Certification',
|
|
'category': 'Human Resources/Employees',
|
|
'version': '1.0',
|
|
'summary': 'Add certification to resume of your employees',
|
|
'description':
|
|
"""
|
|
Certification and Skills for HR
|
|
===============================
|
|
|
|
This module adds certification to resume for employees.
|
|
""",
|
|
'depends': ['hr_skills', 'survey'],
|
|
'data': [
|
|
'data/hr_resume_data.xml',
|
|
'views/hr_templates.xml',
|
|
'views/survey_survey_views.xml',
|
|
],
|
|
'auto_install': True,
|
|
'demo': [
|
|
'data/hr_resume_demo.xml',
|
|
],
|
|
'author': 'Odoo S.A.',
|
|
'license': 'LGPL-3',
|
|
}
|