|
@@ -645,6 +645,8 @@ public class EPaperStudentService {
|
645
|
645
|
public void sjKhConfirm(PaperStudentWebVo ps) throws Exception {
|
646
|
646
|
saveCommitPaperForConfirm(ps);//保存试卷、考号确认扫描结果
|
647
|
647
|
eScanerrorMapper.updateErrorStateExamno(ps.getSerrorid(), 1, ps.getExamno());//更新扫描出错记录为已处理
|
|
648
|
+ eScanbatchMapper.updateErrornum(ps.getBatchid());//更改未处理出错数量
|
|
649
|
+
|
648
|
650
|
}
|
649
|
651
|
|
650
|
652
|
//保存试卷、考号确认扫描结果
|
|
@@ -686,6 +688,7 @@ public class EPaperStudentService {
|
686
|
688
|
if (!N_Utils.isEmptyInteger(errorObj.getSstate()) && errorObj.getSstate() == 3 && answerednum>0) {//缺考
|
687
|
689
|
updateScanErrorInfo(4, errorObj);
|
688
|
690
|
eScanbatchMapper.updateQknum(pswvo.getBatchid());//更改缺考异常数量
|
|
691
|
+ return;
|
689
|
692
|
}
|
690
|
693
|
}
|
691
|
694
|
}
|
|
@@ -795,6 +798,7 @@ public class EPaperStudentService {
|
795
|
798
|
public void khcfConfirm(PaperStudentWebVo ps) throws Exception {
|
796
|
799
|
saveCommitPaperForConfirm(ps);//保存试卷、考号确认扫描结果
|
797
|
800
|
eScanerrorMapper.updateErrorState(ps.getSerrorid(), 1);
|
|
801
|
+ eScanbatchMapper.updateErrornum(ps.getBatchid());//更改未处理出错数量
|
798
|
802
|
}
|
799
|
803
|
|
800
|
804
|
//缺考确认
|