|
@@ -473,7 +473,7 @@ public class ClientServiceImpl implements ClientService {
|
|
|
// Set<Long> orgIds = teachcloudCommonService.listSubOrgIds(null);
|
|
|
// 以下状态考场状态不可查询
|
|
|
String[] examDetailStatus = new String[]{ExamDetailStatusEnum.NEW.name(), ExamDetailStatusEnum.READY.name(), ExamDetailStatusEnum.CANCEL.name()};
|
|
|
- List<ClientPrintTaskDto> pirntTaskDtoList = clientMapper.listClientPrintTask(schoolId, semesterId, examId, machineCode, printPlanId, status, courseId, paperNumber, examPlace, examRoom, examStartTime, examEndTime, isDownload, validate, orgId, examDetailStatus);
|
|
|
+ List<ClientPrintTaskDto> pirntTaskDtoList = clientMapper.listClientPrintTask(schoolId, semesterId, examId, machineCode, printPlanId, status, courseId, paperNumber, examPlace, examRoom, examStartTime, examEndTime, isDownload, validate, orgId, examDetailStatus, null, null);
|
|
|
// 撤回
|
|
|
long count = pirntTaskDtoList.stream().map(m -> {
|
|
|
ExamDetail examDetail = examDetailService.getById(m.getExamDetailId());
|
|
@@ -710,7 +710,7 @@ public class ClientServiceImpl implements ClientService {
|
|
|
Long schoolId = Long.valueOf(ServletUtil.getRequestHeaderSchoolId().toString());
|
|
|
// 以下状态考场状态不可查询
|
|
|
String[] examDetailStatus = new String[]{ExamDetailStatusEnum.NEW.name(), ExamDetailStatusEnum.READY.name(), ExamDetailStatusEnum.CANCEL.name()};
|
|
|
- List<ClientPrintTaskDto> printTaskDtoIList = clientMapper.listClientPrintTask(schoolId, semesterId, examId, machineCode, printPlanId, status, courseId, paperNumber, examPlace, examRoom, examStartTime, examEndTime, isDownload, validate, orgId, examDetailStatus);
|
|
|
+ List<ClientPrintTaskDto> printTaskDtoIList = clientMapper.listClientPrintTask(schoolId, semesterId, examId, machineCode, printPlanId, status, courseId, paperNumber, examPlace, examRoom, examStartTime, examEndTime, isDownload, validate, orgId, examDetailStatus, null, null);
|
|
|
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
printTaskDtoIList = printTaskDtoIList.stream().map(m -> {
|
|
|
if (m.getExamStartTime() != null) {
|