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