39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
|
|
{
|
||
|
|
'name': "survey_extra_fields",
|
||
|
|
|
||
|
|
'summary': "Short (1 phrase/line) summary of the module's purpose",
|
||
|
|
|
||
|
|
'description': """
|
||
|
|
Long description of module's purpose
|
||
|
|
""",
|
||
|
|
|
||
|
|
'author': "My Company",
|
||
|
|
'website': "https://www.yourcompany.com",
|
||
|
|
|
||
|
|
# Categories can be used to filter modules in modules listing
|
||
|
|
# Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
|
||
|
|
# for the full list
|
||
|
|
'category': 'Uncategorized',
|
||
|
|
'version': '0.1',
|
||
|
|
|
||
|
|
# any module necessary for this one to work correctly
|
||
|
|
"data": [
|
||
|
|
"views/survey_question_views.xml",
|
||
|
|
"views/survey_templates.xml",
|
||
|
|
"views/survey_user_input_views.xml",
|
||
|
|
"data/survey_cron_views.xml",
|
||
|
|
"views/survey_survey_cron_views.xml",
|
||
|
|
],
|
||
|
|
"assets": {
|
||
|
|
"web.assets_frontend": [
|
||
|
|
"survey_extra_fields/static/src/js/survey_many2many_select2.js",
|
||
|
|
],
|
||
|
|
"survey.survey_assets": [
|
||
|
|
"survey_extra_fields/static/src/js/survey_color_field.js",
|
||
|
|
"survey_extra_fields/static/src/js/survey_signature_field.js",
|
||
|
|
"survey_extra_fields/static/src/js/survey_range_field.js",
|
||
|
|
],
|
||
|
|
},
|
||
|
|
}
|
||
|
|
|