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