From 71a5657b4ef1a17ecefa41678452f73c671de64b Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Fri, 5 Dec 2025 16:01:37 +0800 Subject: [PATCH] =?UTF-8?q?2025-12-05=20=E6=94=B6=E8=B4=A7=E5=85=A5?= =?UTF-8?q?=E5=BA=93=E4=BB=BB=E5=8A=A1-=E3=80=8B=E7=94=9F=E4=BA=A7?= =?UTF-8?q?=E5=85=A5=E5=BA=93=E7=B1=BB=E5=9E=8B=E7=9A=84=E5=85=A5=E5=BA=93?= =?UTF-8?q?=E6=98=8E=E7=BB=86=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entity/vo/OutboundNotificationDetailVo.java | 1 + .../outboundNotification/OutboundNotificationDetailMapper.xml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/main/java/com/gaotao/modules/outboundNotification/entity/vo/OutboundNotificationDetailVo.java b/src/main/java/com/gaotao/modules/outboundNotification/entity/vo/OutboundNotificationDetailVo.java index af9befe..53cbf29 100644 --- a/src/main/java/com/gaotao/modules/outboundNotification/entity/vo/OutboundNotificationDetailVo.java +++ b/src/main/java/com/gaotao/modules/outboundNotification/entity/vo/OutboundNotificationDetailVo.java @@ -22,4 +22,5 @@ public class OutboundNotificationDetailVo extends OutboundNotificationDetailEnti private String closeFlag; private String rollQty; private Double unScanQty; + private String umName; } \ No newline at end of file diff --git a/src/main/resources/mapper/outboundNotification/OutboundNotificationDetailMapper.xml b/src/main/resources/mapper/outboundNotification/OutboundNotificationDetailMapper.xml index decdb48..e7fc896 100644 --- a/src/main/resources/mapper/outboundNotification/OutboundNotificationDetailMapper.xml +++ b/src/main/resources/mapper/outboundNotification/OutboundNotificationDetailMapper.xml @@ -12,6 +12,7 @@ a.part_no, a.part_desc, a.unit, + c.umName, a.required_qty, a.out_warehouse, b.WareHouseName as outWarehouseName, @@ -26,6 +27,7 @@ a.actual_out_qty as actualStockOutQty FROM outbound_notification_detail as a left join WareHouse as b on a.site = b.site and a.bu_no = b.bu_no and a.out_warehouse = b.WareHouseID + left join um as c on a.site = c.site and a.unit = c.UMID a.site = #{site} and a.bu_no = #{buNo} and a.order_no = #{orderNo}