切换店铺统计 √

下单选择会员 √
注册会员 √
完善手机号 √
会员流水信息同步 √
This commit is contained in:
Tankaikai 2025-04-10 17:24:51 +08:00
parent ac1b67e3e5
commit 81e36b992e
1 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ public class ShopProdSpecController {
shopProdSpecService.updateShopProdSpec(dto); shopProdSpecService.updateShopProdSpec(dto);
List<Long> affectedIdList = dto.getAffectedIdList(); List<Long> affectedIdList = dto.getAffectedIdList();
if (CollUtil.isNotEmpty(affectedIdList)) { if (CollUtil.isNotEmpty(affectedIdList)) {
affectedIdList.parallelStream().forEach(this::asyncToBranchShop); affectedIdList.forEach(this::asyncToBranchShop);
} }
return CzgResult.success(); return CzgResult.success();
} }
@ -116,7 +116,7 @@ public class ShopProdSpecController {
shopProdSpecService.quickAddShopProdSpec(dto); shopProdSpecService.quickAddShopProdSpec(dto);
List<Long> affectedIdList = dto.getAffectedIdList(); List<Long> affectedIdList = dto.getAffectedIdList();
if (CollUtil.isNotEmpty(affectedIdList)) { if (CollUtil.isNotEmpty(affectedIdList)) {
affectedIdList.parallelStream().forEach(this::asyncToBranchShop); affectedIdList.forEach(this::asyncToBranchShop);
} }
return CzgResult.success(); return CzgResult.success();
} }
@ -137,7 +137,7 @@ public class ShopProdSpecController {
shopProdSpecService.quickUpdateShopProdSpec(dto); shopProdSpecService.quickUpdateShopProdSpec(dto);
List<Long> affectedIdList = dto.getAffectedIdList(); List<Long> affectedIdList = dto.getAffectedIdList();
if (CollUtil.isNotEmpty(affectedIdList)) { if (CollUtil.isNotEmpty(affectedIdList)) {
affectedIdList.parallelStream().forEach(this::asyncToBranchShop); affectedIdList.forEach(this::asyncToBranchShop);
} }
return CzgResult.success(); return CzgResult.success();
} }