|
@@ -289,6 +289,10 @@ public class StudentExamResultServiceImpl extends BaseServiceImpl<Long, StudentE
|
|
|
redisTemplate.delete(recordNotify.getRecordId());
|
|
|
Long registrationId = Long.parseLong(recordId);
|
|
|
StudentExamResult studentExamResult = studentExamResultDao.findByRegistrationId(registrationId);
|
|
|
+ Integer isFinishedExam = studentExamResult.getIsFinishedExam();
|
|
|
+ if(isFinishedExam != 5 && isFinishedExam != 0){
|
|
|
+ return;
|
|
|
+ }
|
|
|
String videoUrl = studentExamResult.getVideoUrl();
|
|
|
if(StringUtils.isNotEmpty(videoUrl)){
|
|
|
videoUrl += "," + jsonObject.get("fileUrl");
|