From a246a5ad812be4663ed1ee8f90b8d7db2d34bb97 Mon Sep 17 00:00:00 2001 From: yss <17921@qq.com> Date: Thu, 28 Dec 2023 16:53:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E4=BB=B7=E7=BB=93=E6=9E=84=E5=8C=96-?= =?UTF-8?q?=E5=BC=82=E5=B8=B8=E4=BA=8C=E6=AC=A1=E9=A1=B9=E7=9B=AE=E7=89=A9?= =?UTF-8?q?=E8=B5=84=E5=A4=8D=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/ProjectExceptionServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/chinaunicom/mall/ebtp/project/projectexception/service/impl/ProjectExceptionServiceImpl.java b/src/main/java/com/chinaunicom/mall/ebtp/project/projectexception/service/impl/ProjectExceptionServiceImpl.java index a412729..07805c6 100644 --- a/src/main/java/com/chinaunicom/mall/ebtp/project/projectexception/service/impl/ProjectExceptionServiceImpl.java +++ b/src/main/java/com/chinaunicom/mall/ebtp/project/projectexception/service/impl/ProjectExceptionServiceImpl.java @@ -423,7 +423,7 @@ public class ProjectExceptionServiceImpl extends BaseServiceImpl supplierList = sectionSupplierMap.get(section.getId()); + List supplierList = sectionSupplierMap.get(section.getParentSectionId()); if (null != supplierList && !supplierList.isEmpty()) { for (SectionSupplier supplier : supplierList) { supplier.setSectionId(section.getId()); @@ -435,7 +435,7 @@ public class ProjectExceptionServiceImpl extends BaseServiceImpl materialList = sectionMaterialMap.get(section.getId()); + List materialList = sectionMaterialMap.get(section.getParentSectionId()); if (null != materialList && !materialList.isEmpty()) { for (SectionMaterial material : materialList) { material.setSectionId(section.getId());