13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# File 'app/controllers/surveyor_gui/surveyor_controller.rb', line 13
def update
question_ids_for_dependencies = (params[:r] || []).map{|k,v| v["question_id"] }.compact.uniq
saved = load_and_update_response_set_with_retries
if saved && params[:finish] && !@response_set.mandatory_questions_complete?
ids, remove, question_ids, flashmsg = {}, {}, [], []
flashmsg << "You must complete all required fields before submitting the survey. Please fill in the following:"
triggered_mandatory_missing = @response_set.triggered_mandatory_missing
survey_section = ''
question_number = {}
last_question_of_previous_section = 0
last_question_number = 0
@response_set.survey.survey_sections.each do |ss|
index = 0
ss.questions.where('display_type!=?','label').each do |q|
if q.triggered?(@response_set)
question_number[q.id.to_s] = last_question_number = last_question_of_previous_section + index + 1
index = index + 1
end
end
last_question_of_previous_section = last_question_number
end
triggered_mandatory_missing.each do |m|
if m.survey_section_id != survey_section
survey_section = m.survey_section_id
flashmsg << ""
flashmsg << " " + m.survey_section.title
end
flashmsg << " question " + question_number[m.id.to_s].to_s + ') '+ m.text
end
respond_to do |format|
format.js do
render :json=>{"flashmsg"=>flashmsg}
end
format.html do
flash[:notice] = flashmsg.join('<br />')
redirect_to surveyor.edit_my_survey_path(:anchor => anchor_from(params[:section]), :section => section_id_from(params))
end
end
return
elsif saved && params[:finish]
return redirect_with_message(surveyor_finish, :notice, t('surveyor.completed_survey'))
end
respond_to do |format|
format.html do
if @response_set.nil?
return redirect_with_message(surveyor.available_surveys_path, :notice, t('surveyor.unable_to_find_your_responses'))
else
flash[:notice] = t('surveyor.unable_to_update_survey') unless saved
redirect_to surveyor.edit_my_survey_path(:anchor => anchor_from(params[:section]), :section => section_id_from(params))
end
end
format.js do
if @response_set
render :json => @response_set.reload.all_dependencies(question_ids_for_dependencies)
else
render :text => "No response set #{params[:response_set_code]}",
:status => 404
end
end
end
end
|