From 31a6c0436289ae143f1ca44402dc05a26b2c2051 Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Tue, 28 Oct 2025 10:52:32 +0800 Subject: [PATCH] =?UTF-8?q?2025-10-28=20=E7=94=9F=E4=BA=A7=E9=80=80?= =?UTF-8?q?=E4=BB=93pda=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mapper/productionReturn/ProductionReturnMapper.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/resources/mapper/productionReturn/ProductionReturnMapper.xml b/src/main/resources/mapper/productionReturn/ProductionReturnMapper.xml index 2b15f9c..8e0d44a 100644 --- a/src/main/resources/mapper/productionReturn/ProductionReturnMapper.xml +++ b/src/main/resources/mapper/productionReturn/ProductionReturnMapper.xml @@ -11,7 +11,8 @@ sh.OrderNo as inboundNo, sh.PartNo as partNo, p.PartDescription as partDesc, - sh.batch_no as batchNo + sh.batch_no as batchNo, + sh.LotSize as lotSize -- 订单数量 from ShopOrder as sh left join part as p on sh.site = p.site and sh.bu_no = p.bu_no and sh.PartNo = p.PartNo where sh.site = #{site} and sh.bu_no in (select bu_no from AccessBu where username = #{userName}) @@ -35,7 +36,8 @@ sh.OrderNo as inboundNo, sh.PartNo as partNo, p.PartDescription as partDesc, - sh.batch_no as batchNo + sh.batch_no as batchNo, + sh.LotSize as lotSize -- 订单数量 from ShopOrder as sh left join part as p on sh.site = p.site and sh.bu_no = p.bu_no and sh.PartNo = p.PartNo where sh.site = #{site} AND sh.bu_no = #{buNo} AND sh.OrderNo = #{orderNo}