|
@@ -95,7 +95,7 @@ public class ExamScoreController extends ControllerSupport {
|
|
|
for (Long examRecordDataId : unSyncedExamRecordDataIds) {
|
|
|
|
|
|
if (!resultList.isEmpty()) {
|
|
|
- examUsedNum = resultList.get(0).getExamOrder();
|
|
|
+ examUsedNum = resultList.get(resultList.size() - 1).getExamOrder();
|
|
|
}
|
|
|
|
|
|
ExamRecordData examRecordData =
|
|
@@ -108,7 +108,7 @@ public class ExamScoreController extends ControllerSupport {
|
|
|
cachedObjectiveScoreInfo.setExamOrder(
|
|
|
getExamOrder(examRecordData.getExamId(), examRecordData.getStudentId(), examUsedNum));
|
|
|
|
|
|
- resultList.add(0, cachedObjectiveScoreInfo);
|
|
|
+ resultList.add(cachedObjectiveScoreInfo);
|
|
|
}
|
|
|
}
|
|
|
}
|