survey_upload_image/static/src/js/SurveyFormWidget.js
2025-12-29 13:48:22 +07:00

14 lines
477 B
JavaScript
Executable File

/** @odoo-module */
import SurveyFormWidget from '@survey/js/survey_form';
SurveyFormWidget.include({
/** Get all question answers by question type */
_prepareSubmitValues(formData, params) {
this._super(...arguments);
this.$('[data-question-type]').each(function () {
if ($(this).data('questionType') === 'upload_file'){
params[this.name] = [$(this).data('oe-data'), $(this).data('oe-file_name')];
}
});
},
});