|
@@ -55,6 +55,8 @@ public class ExamRoomStudentRelationServiceImpl extends BaseServiceImpl<Long, Ex
|
|
|
@Autowired
|
|
|
private StudentExamResultDao studentExamResultDao;
|
|
|
@Autowired
|
|
|
+ private ExamReviewDao examReviewDao;
|
|
|
+ @Autowired
|
|
|
private ExamCertificationService examCertificationService;
|
|
|
@Autowired
|
|
|
private ExamLocationDao examLocationDao;
|
|
@@ -685,6 +687,7 @@ public class ExamRoomStudentRelationServiceImpl extends BaseServiceImpl<Long, Ex
|
|
|
examRoomStudentRelation.setSignInTime(null);
|
|
|
studentExamResultDao.updateFinishedExam(examRoomStudentRelation.getExamRegistrationId(),3);
|
|
|
studentExamResultDao.updateVideoExam(examRoomStudentRelation.getExamRegistrationId());
|
|
|
+ examReviewDao.delByRegistration(examRoomStudentRelation.getExamRegistrationId());
|
|
|
publishMessage(examRoomStudentRelation,MemberChangedMessage.Not_Finish,true,operator);
|
|
|
HashMap<Integer, String> map = new HashMap<>(1);
|
|
|
map.put(examRoomStudentRelation.getStudentId(),examRoomStudentRelation.getStudentId().toString());
|