|
@@ -131,6 +131,12 @@ public class SyncExamDataCloudServiceProvider extends ControllerSupport implemen
|
|
//同步考试记录,并返回真实的考试记录id
|
|
//同步考试记录,并返回真实的考试记录id
|
|
Long realExamRecordDataId = syncExamRecordData(transitionExamRecordData);
|
|
Long realExamRecordDataId = syncExamRecordData(transitionExamRecordData);
|
|
|
|
|
|
|
|
+ //header校验错误
|
|
|
|
+ Boolean hasWarn = redisClient.get("OE_SESSION_WARN_"+transitionExamRecordDataId, Boolean.class);
|
|
|
|
+ if(hasWarn !=null && hasWarn){
|
|
|
|
+ examAuditService.saveHeaderWarnAudit(realExamRecordDataId);
|
|
|
|
+ }
|
|
|
|
+
|
|
startTime = this.debugCost("3 同步考试记录表", transitionExamRecordDataId, startTime);
|
|
startTime = this.debugCost("3 同步考试记录表", transitionExamRecordDataId, startTime);
|
|
|
|
|
|
//添加同步记录
|
|
//添加同步记录
|
|
@@ -210,12 +216,6 @@ public class SyncExamDataCloudServiceProvider extends ControllerSupport implemen
|
|
saveAutoAudit(transitionExamRecordData, isNoPhotoAndIllegality, realExamRecordDataId);
|
|
saveAutoAudit(transitionExamRecordData, isNoPhotoAndIllegality, realExamRecordDataId);
|
|
}
|
|
}
|
|
|
|
|
|
- //header校验错误
|
|
|
|
- Boolean hasWarn = redisClient.get("OE_SESSION_WARN_"+transitionExamRecordDataId, Boolean.class);
|
|
|
|
- if(hasWarn !=null && hasWarn){
|
|
|
|
- examAuditService.saveHeaderWarnAudit(realExamRecordDataId);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
startTime = this.debugCost("13 如果开启了活检,计算违纪自动审核结果", transitionExamRecordDataId, startTime);
|
|
startTime = this.debugCost("13 如果开启了活检,计算违纪自动审核结果", transitionExamRecordDataId, startTime);
|
|
|
|
|
|
//同步后续处理
|
|
//同步后续处理
|