|
|
|
@ -848,8 +848,8 @@ public class GeneralQuestionLogService extends CoreBaseService<GeneralQuestionLo
|
|
|
|
|
sumSuccessCount += successCount;
|
|
|
|
|
sumErrorCount += errorCount;
|
|
|
|
|
sumDoCount += ObjectUtil.isNotEmpty(questionLog.getGeneralQuestionLogAnswer()) ? 1 : 0;
|
|
|
|
|
questionTotalScore = questionTotalScore.add(questionLog.getQuestionScore());
|
|
|
|
|
myTotalScore = myTotalScore.add(questionLog.getStudentScore());
|
|
|
|
|
questionTotalScore = questionTotalScore.add(defaultIfNull(questionLog.getQuestionScore(), questionLog.getStudentScore()));
|
|
|
|
|
myTotalScore = myTotalScore.add(defaultIfNull(questionLog.getStudentScore(), ZERO));
|
|
|
|
|
idsSet.add(questionLog.getGeneralQuestionLogId().toString());
|
|
|
|
|
}
|
|
|
|
|
// 及格分值比率
|
|
|
|
|