|
@@ -1205,12 +1205,12 @@ public class ExamStudentServiceImpl implements ExamStudentService {
|
|
|
studentId, ExamProperties.IS_OBJ_SCORE_VIEW.name()).getValue();
|
|
|
if (StringUtils.isBlank(isObjScoreView)) {
|
|
|
examStudentInfo.setIsObjScoreView(false);
|
|
|
- if (end) {
|
|
|
- return;
|
|
|
- }
|
|
|
} else {
|
|
|
examStudentInfo.setIsObjScoreView(Boolean.valueOf(isObjScoreView));
|
|
|
}
|
|
|
+ if (end && !examStudentInfo.getIsObjScoreView()) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
//是否开放app考试
|
|
|
String appExamEnabled = ExamCacheTransferHelper.getCachedExamProperty(examId,
|