切换店铺统计 √
下单选择会员 √ 注册会员 √ 完善手机号 √ 会员流水信息同步 √
This commit is contained in:
@@ -72,7 +72,7 @@ public class ShopProdSpecController {
|
||||
shopProdSpecService.updateShopProdSpec(dto);
|
||||
List<Long> 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<Long> 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<Long> affectedIdList = dto.getAffectedIdList();
|
||||
if (CollUtil.isNotEmpty(affectedIdList)) {
|
||||
affectedIdList.parallelStream().forEach(this::asyncToBranchShop);
|
||||
affectedIdList.forEach(this::asyncToBranchShop);
|
||||
}
|
||||
return CzgResult.success();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user