|
@@ -407,6 +407,11 @@ public class PaperLibraryServiceImpl extends ServiceImpl<PaperLibraryMapper, Pap
|
|
examStudentService.clearPdfFilePath(studentId);
|
|
examStudentService.clearPdfFilePath(studentId);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ // 更新扫描任务扫描考生数、扫描图片数
|
|
|
|
+ Set<Long> paperScanTaskIds = paperLibraryList.stream().map(PaperLibrary::getPaperScanTaskId).collect(Collectors.toSet());
|
|
|
|
+ for (Long paperScanTaskId : paperScanTaskIds) {
|
|
|
|
+ paperScanTaskService.updateScanCount(paperScanTaskId);
|
|
|
|
+ }
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
|