|
|
@ -30,16 +30,25 @@ class PollVotesController < ApplicationController
|
|
|
|
#begin
|
|
|
|
#begin
|
|
|
|
if question_type == 1
|
|
|
|
if question_type == 1
|
|
|
|
if user_votes.present? #用户曾经回答过的,答案选择不一样,否则新建
|
|
|
|
if user_votes.present? #用户曾经回答过的,答案选择不一样,否则新建
|
|
|
|
|
|
|
|
logger.info("########___________user_votes.present1111____________________#######")
|
|
|
|
current_user_answer = user_votes.first
|
|
|
|
current_user_answer = user_votes.first
|
|
|
|
if current_user_answer.poll_answer_id != question_answer_id #如果说更换了答案,则以前的答案删除,并新建记录
|
|
|
|
if current_user_answer&.poll_answer_id != question_answer_id #如果说更换了答案,则以前的答案删除,并新建记录
|
|
|
|
|
|
|
|
logger.info("########___________user_votes.present22222____________________#######")
|
|
|
|
|
|
|
|
|
|
|
|
current_user_answer.destroy
|
|
|
|
current_user_answer.destroy
|
|
|
|
PollVote.create(vote_answer_params)
|
|
|
|
PollVote.create(vote_answer_params)
|
|
|
|
else
|
|
|
|
else
|
|
|
|
|
|
|
|
logger.info("########___________user_votes.present33333____________________#######")
|
|
|
|
|
|
|
|
|
|
|
|
if question_answer_text.present?
|
|
|
|
if question_answer_text.present?
|
|
|
|
|
|
|
|
logger.info("########___________user_votes.present4444444____________________#######")
|
|
|
|
|
|
|
|
|
|
|
|
current_user_answer.update_attribute("vote_text", question_answer_text)
|
|
|
|
current_user_answer.update_attribute("vote_text", question_answer_text)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
else
|
|
|
|
|
|
|
|
logger.info("########___________user_votes.present555555____________________#######")
|
|
|
|
|
|
|
|
|
|
|
|
PollVote.create(vote_answer_params)
|
|
|
|
PollVote.create(vote_answer_params)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
elsif question_type == 2 #多选题的话,答案应该是1个以上
|
|
|
|
elsif question_type == 2 #多选题的话,答案应该是1个以上
|
|
|
|