24 lines
795 B
Python
24 lines
795 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'DISC Personality Test Survey',
|
|
'version': '1.0',
|
|
'category': 'Human Resources',
|
|
'summary': 'DISC Personality Assessment Test in Survey module',
|
|
'description': """
|
|
This module adds a DISC Personality Test to the Odoo Survey module.
|
|
It includes 24 sets of questions where participants choose the 'Most' (Paling)
|
|
and 'Least' (Kurang) descriptive traits.
|
|
""",
|
|
'depends': ['survey'],
|
|
'data': [
|
|
'data/survey_data.xml',
|
|
'views/survey_user_input_views.xml',
|
|
'views/survey_templates.xml',
|
|
'report/survey_disc_report.xml',
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
'license': 'LGPL-3',
|
|
}
|