From a564891e01af8f112d49eb61273c5bbf54412d71 Mon Sep 17 00:00:00 2001 From: "han\\hanst" Date: Wed, 2 Sep 2026 16:29:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=93=E4=BD=8D=E6=9F=A5=E8=AF=A2=E4=BC=A0?= =?UTF-8?q?=E7=88=B6site?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/gaotao/modules/other/entity/OtherInboundRequestDto.java | 2 ++ .../modules/other/service/impl/OtherInboundServiceImpl.java | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/gaotao/modules/other/entity/OtherInboundRequestDto.java b/src/main/java/com/gaotao/modules/other/entity/OtherInboundRequestDto.java index a67e76d4..663a9ef9 100644 --- a/src/main/java/com/gaotao/modules/other/entity/OtherInboundRequestDto.java +++ b/src/main/java/com/gaotao/modules/other/entity/OtherInboundRequestDto.java @@ -14,6 +14,8 @@ public class OtherInboundRequestDto { @NotNull(message = "site不能为空") private String site; + private String fuSite; + @NotNull(message = "操作员不能为空") private String operatorName; diff --git a/src/main/java/com/gaotao/modules/other/service/impl/OtherInboundServiceImpl.java b/src/main/java/com/gaotao/modules/other/service/impl/OtherInboundServiceImpl.java index 73846008..276e5370 100644 --- a/src/main/java/com/gaotao/modules/other/service/impl/OtherInboundServiceImpl.java +++ b/src/main/java/com/gaotao/modules/other/service/impl/OtherInboundServiceImpl.java @@ -73,7 +73,7 @@ public class OtherInboundServiceImpl implements OtherInboundService { SysUserEntity currentUser = (SysUserEntity) SecurityUtils.getSubject().getPrincipal(); // 1. 验证目标库位 - String warehouseId = validateTargetLocation(dto.getSite(), dto.getTargetLocationId()); + String warehouseId = validateTargetLocation(dto.getFuSite(), dto.getTargetLocationId()); // 2. 验证HandlingUnit List handlingUnits = validateHandlingUnits(dto);