From 91ab1a15515c4c213b2ac4f777a7f20c3d0d59ad Mon Sep 17 00:00:00 2001 From: zss <zss@example.com> Date: 星期五, 28 三月 2025 13:49:53 +0800 Subject: [PATCH] 一个订单在每个站点检验都需要扫码入库报检,在中间站点复核继续试验之后默认自动将样品出库,且在列表中也不需要再展示出来,到最后一步复核结束反而是需要手动去出库不能自动出库,且出库之后也不需要在页面展示 --- cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeCalibrationScheduleController.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeCalibrationScheduleController.java b/cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeCalibrationScheduleController.java index f69873e..a22e625 100644 --- a/cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeCalibrationScheduleController.java +++ b/cnas-resource-require/src/main/java/com/yuanchu/mom/controller/FeCalibrationScheduleController.java @@ -65,7 +65,7 @@ @PostMapping("exportOfValueTraceabilityPlan") public void exportOfValueTraceabilityPlan(String instrumentName, String managementNumber, HttpServletResponse response) throws Exception { - IPage<FeCalibrationSchedule> data = feCalibrationScheduleService.page(new Page<>(1, -1),instrumentName, managementNumber); + IPage<FeCalibrationSchedule> data = feCalibrationScheduleService.page(new Page<>(-1, -1),instrumentName, managementNumber); List<FeCalibrationScheduleExport> studentList = JSONObject.parseArray(JSON.toJSONString(data.getRecords()), FeCalibrationScheduleExport.class); response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); response.setHeader("requestType", "excel"); @@ -79,8 +79,8 @@ .doWrite(studentList); } - @ValueClassify(value = "閲忓�兼函婧愯鍒掑鍏�") - @ApiOperation(value = "importOfValueTraceabilityPlan") + @ValueClassify(value = "閲忓�兼函婧愯鍒�") + @ApiOperation(value = "閲忓�兼函婧愯鍒掑鍏�") @PostMapping("/importOfValueTraceabilityPlan") public void importOfValueTraceabilityPlan(MultipartFile file) throws IOException { if (file.isEmpty()) { -- Gitblit v1.9.3