From 2d666b7809bdd6034161d8b8bcd00b4de2abfb52 Mon Sep 17 00:00:00 2001 From: gongbaoxiong <751575283@qq.com> Date: Tue, 25 Feb 2025 23:43:24 +0800 Subject: [PATCH] =?UTF-8?q?add:=E4=BA=8C=E6=A5=BC=E5=87=BA=E5=BA=93?= =?UTF-8?q?=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../org/nl/wms/pda_manage/iostorage/sevice/PdaIOService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wms_pro/hd/nladmin-system/src/main/java/org/nl/wms/pda_manage/iostorage/sevice/PdaIOService.java b/wms_pro/hd/nladmin-system/src/main/java/org/nl/wms/pda_manage/iostorage/sevice/PdaIOService.java index 8a30fa23..0dc68bf6 100644 --- a/wms_pro/hd/nladmin-system/src/main/java/org/nl/wms/pda_manage/iostorage/sevice/PdaIOService.java +++ b/wms_pro/hd/nladmin-system/src/main/java/org/nl/wms/pda_manage/iostorage/sevice/PdaIOService.java @@ -185,6 +185,7 @@ public class PdaIOService { .eq(SchBasePoint::getIs_used, true) .eq(SchBasePoint::getLock_type, StatusEnum.LOCK.code("无锁")) .eq(SchBasePoint::getRegion_code, StatusEnum.REGION_INFO.code("二楼CTU货架对接位")) + .ne(SchBasePoint::getVehicle_code, "") .isNotNull(SchBasePoint::getVehicle_code)); if (ObjectUtils.isEmpty(endPointList)) { log.error("CTU出库任务,该单据{}出库时,地面货架站点暂无可用货架,请检查现场情况", billCode); @@ -198,7 +199,7 @@ public class PdaIOService { .eq(StIvtStructattr::getSect_code, endPointList.get(0).getVehicle_code()) .eq(StIvtStructattr::getLock_type, StatusEnum.LOCK.code("无锁")) .eq(StIvtStructattr::getStor_code, StatusEnum.STOCK_INFO.code("二楼货架缓存库")) - .isNull(StIvtStructattr::getVehicle_code) + .isNotNull(StIvtStructattr::getVehicle_code) .orderByAsc(StIvtStructattr::getLayer_num)); if (ObjectUtils.isEmpty(stIvtStructattrList)) { log.error("CTU出库任务,该单据{}出库时,地面货架站点货架的货位已放满,请检查现场情况", billCode);