From 37a42db88eed1f9ba8fcffd1ddb93f01fef0f77f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B8=B8=E7=86=9F=E5=90=B4=E5=BD=A6=E7=A5=96?= Date: Thu, 5 Feb 2026 17:26:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8E=E7=AB=AF=E9=AA=8C=E8=AF=81=E5=BA=93?= =?UTF-8?q?=E4=BD=8D=20=E4=B8=80=E8=87=B4=E7=9A=84=E6=97=B6=E5=80=99?= =?UTF-8?q?=E4=B8=8D=E5=85=81=E8=AE=B8=E7=A7=BB=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/other/service/impl/InventoryMoveServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/gaotao/modules/other/service/impl/InventoryMoveServiceImpl.java b/src/main/java/com/gaotao/modules/other/service/impl/InventoryMoveServiceImpl.java index 5faec5e..52d0b76 100644 --- a/src/main/java/com/gaotao/modules/other/service/impl/InventoryMoveServiceImpl.java +++ b/src/main/java/com/gaotao/modules/other/service/impl/InventoryMoveServiceImpl.java @@ -234,7 +234,7 @@ public class InventoryMoveServiceImpl implements InventoryMoveService { throw new XJException("部分HandlingUnit不存在或site不匹配"); } - /* for (HandlingUnit hu : handlingUnits) { + for (HandlingUnit hu : handlingUnits) { if (!"Y".equals(hu.getInStockFlag())) { throw new XJException("HandlingUnit不在库,无法移库: " + hu.getUnitId()); } @@ -242,7 +242,7 @@ public class InventoryMoveServiceImpl implements InventoryMoveService { if (dto.getTargetLocationId().equals(hu.getLocationId())) { throw new XJException("目标库位不能与当前库位相同: " + hu.getUnitId()); } - }*/ + } return handlingUnits; }