master:档口商品分页是否标准尺码调整;

pull/1121/head
liujiang 2025-09-18 23:21:36 +08:00
parent 1c0c9d040d
commit 6c70ee066f
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ public class StoreProductServiceImpl implements IStoreProductService {
List<StoreProductColorSize> prodColorSizeList = this.storeProdColorSizeMapper.selectList(new LambdaQueryWrapper<StoreProductColorSize>()
.in(StoreProductColorSize::getStoreProdId, prodList.stream().map(StoreProdPageResDTO::getStoreProdId).collect(Collectors.toList()))
.in(StoreProductColorSize::getStoreColorId, prodList.stream().map(StoreProdPageResDTO::getStoreColorId).collect(Collectors.toList()))
.eq(StoreProductColorSize::getDelFlag, Constants.UNDELETED).eq(StoreProductColorSize::getStandard, 0));
.eq(StoreProductColorSize::getDelFlag, Constants.UNDELETED).eq(StoreProductColorSize::getStandard, 1));
// key storeProdId:storeColorId value list
Map<String, List<StoreProductColorSize>> prodColorSizeMap = prodColorSizeList.stream().collect(Collectors
.groupingBy(x -> x.getStoreProdId() + ":" + x.getStoreColorId()));