From 9de5288bc06f791673c95e9ae88a8474347bec9b Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Fri, 13 Mar 2026 09:52:41 +0800 Subject: [PATCH] =?UTF-8?q?2026-03-13=20=E7=89=A9=E6=96=99=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E5=A4=8D=E5=88=B6=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/part/service/impl/PartInformationServiceImpl.java | 4 ++-- src/main/resources/mapper/part/PartInformationMapper.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/spring/modules/part/service/impl/PartInformationServiceImpl.java b/src/main/java/com/spring/modules/part/service/impl/PartInformationServiceImpl.java index 559fd846..bc6989b3 100644 --- a/src/main/java/com/spring/modules/part/service/impl/PartInformationServiceImpl.java +++ b/src/main/java/com/spring/modules/part/service/impl/PartInformationServiceImpl.java @@ -2275,7 +2275,7 @@ public class PartInformationServiceImpl extends ServiceImpl ifsFiles = files.stream().map(a -> { a.setOrderRef1(toPart.getSite()); - a.setOrderRef2(toPart.getPartNo()); + a.setOrderRef2(toPart.getPlmPartNo()); return a; }).collect(Collectors.toList()); partInformationMapper.savePartFile(ifsFiles); @@ -3486,7 +3486,7 @@ public class PartInformationServiceImpl extends ServiceImpl ifsFiles = files.stream().map(a -> { - a.setOrderRef2(ifsPart.getPartNo()); + a.setOrderRef2(ifsPart.getPlmPartNo()); return a; }).collect(Collectors.toList()); partInformationMapper.savePartFile(ifsFiles); diff --git a/src/main/resources/mapper/part/PartInformationMapper.xml b/src/main/resources/mapper/part/PartInformationMapper.xml index 0f2dbf11..f8299f88 100644 --- a/src/main/resources/mapper/part/PartInformationMapper.xml +++ b/src/main/resources/mapper/part/PartInformationMapper.xml @@ -1899,7 +1899,7 @@ file_type_code, file_remark FROM sys_oss - where order_ref1 = #{site} and order_ref2 = #{partNo} + where order_ref1 = #{site} and order_ref2 = #{plmPartNo} and order_ref3 = 'inventoryPart'