From e1d02b24152ec2e273f4b6e4933223e66fc1f5df 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: Tue, 14 Oct 2025 22:37:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=87=E7=AD=BE=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/warehouse/service/impl/LabelQueryServiceImpl.java | 1 + src/main/resources/mapper/warehouse/LabelQueryMapper.xml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/gaotao/modules/warehouse/service/impl/LabelQueryServiceImpl.java b/src/main/java/com/gaotao/modules/warehouse/service/impl/LabelQueryServiceImpl.java index 0d73637..521456e 100644 --- a/src/main/java/com/gaotao/modules/warehouse/service/impl/LabelQueryServiceImpl.java +++ b/src/main/java/com/gaotao/modules/warehouse/service/impl/LabelQueryServiceImpl.java @@ -127,6 +127,7 @@ public class LabelQueryServiceImpl implements LabelQueryService { handlingUnit.setReserveOrderRef1(dto.getReserveOrderRef1()); handlingUnit.setReserveOrderRef2(dto.getReserveOrderRef2()); handlingUnit.setReserveOrderRef3(dto.getReserveOrderRef3()); + handlingUnit.setHeight(dto.getHeight()); boolean result = handlingUnitService.updateById(handlingUnit); diff --git a/src/main/resources/mapper/warehouse/LabelQueryMapper.xml b/src/main/resources/mapper/warehouse/LabelQueryMapper.xml index df12cbc..06655cf 100644 --- a/src/main/resources/mapper/warehouse/LabelQueryMapper.xml +++ b/src/main/resources/mapper/warehouse/LabelQueryMapper.xml @@ -154,7 +154,8 @@ l.LocationName as locationName, p.pallet_id, s.station_id, - s.station_area + s.station_area, + h.height FROM handling_unit h LEFT JOIN warehouse w ON h.warehouse_id = w.WareHouseID AND h.site = w.Site LEFT JOIN location l ON h.location_id = l.LocationID AND h.site = l.Site