From 81e36b992ebbc4a5f43ce1bdb2f644a20217c969 Mon Sep 17 00:00:00 2001 From: Tankaikai Date: Thu, 10 Apr 2025 17:24:51 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=87=E6=8D=A2=E5=BA=97=E9=93=BA=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=20=E2=88=9A=20=E4=B8=8B=E5=8D=95=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E4=BC=9A=E5=91=98=20=E2=88=9A=20=E6=B3=A8=E5=86=8C=E4=BC=9A?= =?UTF-8?q?=E5=91=98=20=E2=88=9A=20=E5=AE=8C=E5=96=84=E6=89=8B=E6=9C=BA?= =?UTF-8?q?=E5=8F=B7=20=E2=88=9A=20=E4=BC=9A=E5=91=98=E6=B5=81=E6=B0=B4?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E5=90=8C=E6=AD=A5=20=E2=88=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/czg/controller/admin/ShopProdSpecController.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cash-api/product-server/src/main/java/com/czg/controller/admin/ShopProdSpecController.java b/cash-api/product-server/src/main/java/com/czg/controller/admin/ShopProdSpecController.java index 1aac3d21..7f8791ef 100644 --- a/cash-api/product-server/src/main/java/com/czg/controller/admin/ShopProdSpecController.java +++ b/cash-api/product-server/src/main/java/com/czg/controller/admin/ShopProdSpecController.java @@ -72,7 +72,7 @@ public class ShopProdSpecController { shopProdSpecService.updateShopProdSpec(dto); List affectedIdList = dto.getAffectedIdList(); if (CollUtil.isNotEmpty(affectedIdList)) { - affectedIdList.parallelStream().forEach(this::asyncToBranchShop); + affectedIdList.forEach(this::asyncToBranchShop); } return CzgResult.success(); } @@ -116,7 +116,7 @@ public class ShopProdSpecController { shopProdSpecService.quickAddShopProdSpec(dto); List affectedIdList = dto.getAffectedIdList(); if (CollUtil.isNotEmpty(affectedIdList)) { - affectedIdList.parallelStream().forEach(this::asyncToBranchShop); + affectedIdList.forEach(this::asyncToBranchShop); } return CzgResult.success(); } @@ -137,7 +137,7 @@ public class ShopProdSpecController { shopProdSpecService.quickUpdateShopProdSpec(dto); List affectedIdList = dto.getAffectedIdList(); if (CollUtil.isNotEmpty(affectedIdList)) { - affectedIdList.parallelStream().forEach(this::asyncToBranchShop); + affectedIdList.forEach(this::asyncToBranchShop); } return CzgResult.success(); }