|
|
@ -286,7 +286,7 @@ class HomeworksService
|
|
|
|
challenge_setting = challenge_settings.select{|setting| setting.challenge_id == game.challenge_id}.first
|
|
|
|
challenge_setting = challenge_settings.select{|setting| setting.challenge_id == game.challenge_id}.first
|
|
|
|
pass_consume_time += (game.cost_time / 60.0).to_f
|
|
|
|
pass_consume_time += (game.cost_time / 60.0).to_f
|
|
|
|
user_total_score += game.final_score.to_i < 0 ? 0 : game.challenge.score.to_i
|
|
|
|
user_total_score += game.final_score.to_i < 0 ? 0 : game.challenge.score.to_i
|
|
|
|
adjust_score = work.challenge_work_scores.where(:challenge_id => game.challenge_id).last
|
|
|
|
adjust_score = work.challenge_work_scores.select{|work_score| work_score.challenge_id == game.challenge_id}.last
|
|
|
|
final_score += if adjust_score.present?
|
|
|
|
final_score += if adjust_score.present?
|
|
|
|
adjust_score.score
|
|
|
|
adjust_score.score
|
|
|
|
elsif homework.homework_detail_manual.answer_open_evaluation
|
|
|
|
elsif homework.homework_detail_manual.answer_open_evaluation
|
|
|
@ -300,6 +300,17 @@ class HomeworksService
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
myshixun_endtime = games.select{|game| game.status == 2}.size == games.size ? games.map(&:end_time).max : nil
|
|
|
|
myshixun_endtime = games.select{|game| game.status == 2}.size == games.size ? games.map(&:end_time).max : nil
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if work.work_status == 0
|
|
|
|
|
|
|
|
is_complete = myshixun_endtime && (myshixun_endtime < setting_time.end_time)
|
|
|
|
|
|
|
|
if is_complete || (myshixun.created_at < setting_time.end_time && (!homework.allow_late || setting_time.end_time >= Time.now))
|
|
|
|
|
|
|
|
work.work_status = 1
|
|
|
|
|
|
|
|
elsif homework.allow_late && myshixun.created_at < homework.late_time
|
|
|
|
|
|
|
|
work.work_status = 2
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if work.work_status != 0
|
|
|
|
if myshixun_endtime.present?
|
|
|
|
if myshixun_endtime.present?
|
|
|
|
work.cost_time = myshixun_endtime.to_i - setting_time.publish_time.to_i
|
|
|
|
work.cost_time = myshixun_endtime.to_i - setting_time.publish_time.to_i
|
|
|
|
|
|
|
|
|
|
|
@ -314,18 +325,9 @@ class HomeworksService
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
if work.work_status == 0
|
|
|
|
|
|
|
|
is_complete = myshixun_endtime && (myshixun_endtime < setting_time.end_time)
|
|
|
|
|
|
|
|
if is_complete || (myshixun.created_at < setting_time.end_time && (!homework.allow_late || setting_time.end_time >= Time.now))
|
|
|
|
|
|
|
|
work.work_status = 1
|
|
|
|
|
|
|
|
elsif homework.allow_late && myshixun.created_at < homework.late_time
|
|
|
|
|
|
|
|
work.work_status = 2
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
work.late_penalty = work.work_status == 2 ? homework.late_penalty : 0
|
|
|
|
work.late_penalty = work.work_status == 2 ? homework.late_penalty : 0
|
|
|
|
work.commit_time = myshixun.created_at > setting_time.publish_time ? setting_time.publish_time : myshixun.created_at
|
|
|
|
work.commit_time = myshixun.created_at > setting_time.publish_time ? setting_time.publish_time : myshixun.created_at
|
|
|
|
work.myshixun_id = myshixun.id
|
|
|
|
work.myshixun_id = myshixun.id
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
work.update_time = myshixun.updated_at
|
|
|
|
work.update_time = myshixun.updated_at
|
|
|
|
|
|
|
|
|
|
|
|
work.final_score = final_score
|
|
|
|
work.final_score = final_score
|
|
|
@ -335,4 +337,5 @@ class HomeworksService
|
|
|
|
work.calculation_time = Time.now
|
|
|
|
work.calculation_time = Time.now
|
|
|
|
work.save!
|
|
|
|
work.save!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|