fix error
This commit is contained in:
parent
4a897b68cf
commit
62e9acdbb8
|
@ -111,24 +111,26 @@ class Panel::Survey::BackEnd::SurveysController < OrbitBackendController
|
||||||
|
|
||||||
@survey.survey_answers.destroy
|
@survey.survey_answers.destroy
|
||||||
|
|
||||||
|
# End of speadsheet
|
||||||
|
@end_row = @spreadsheet.count
|
||||||
|
|
||||||
# Modify multiline options if changed
|
# Modify multiline options if changed
|
||||||
@survey_questions.each_with_index do |question, index|
|
@survey_questions.each_with_index do |question, index|
|
||||||
case question.type
|
case question.type
|
||||||
|
|
||||||
when ::SurveyQuestion::Radio, ::SurveyQuestion::Select
|
when ::SurveyQuestion::Radio, ::SurveyQuestion::Select
|
||||||
(2..(question.survey_question_options.count + 1)).each do |row|
|
((question.survey_question_options.count + 2)..@end_row).each do |row|
|
||||||
(1..@spreadsheet.row(row)[index*2 + 1].to_i).each do
|
|
||||||
@answer_model = @survey.survey_answers.new
|
@answer_model = @survey.survey_answers.new
|
||||||
|
if !@spreadsheet.row(row)[index*2].nil? && @spreadsheet.row(row)[index*2] != " "
|
||||||
@answer_model[question.id.to_s] = @spreadsheet.row(row)[index*2]
|
@answer_model[question.id.to_s] = @spreadsheet.row(row)[index*2]
|
||||||
@answer_model.save!
|
@answer_model.save!
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
when ::SurveyQuestion::Check
|
when ::SurveyQuestion::Check
|
||||||
(2..(question.survey_question_options.count + 1)).each do |row|
|
((question.survey_question_options.count + 2)..@end_row).each do |row|
|
||||||
(1..@spreadsheet.row(row)[index*2 + 1].to_i).each do
|
|
||||||
@answer_model = @survey.survey_answers.new
|
@answer_model = @survey.survey_answers.new
|
||||||
@answer_model[question.id.to_s] = [ @spreadsheet.row(row)[index*2] ]
|
if !@spreadsheet.row(row)[index*2].nil?
|
||||||
|
@answer_model[question.id.to_s] = @spreadsheet.row(row)[index*2].split("\"").select.each_with_index { |str, i| i.odd? }
|
||||||
@answer_model.save!
|
@answer_model.save!
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue