Commit edbd35f7 by “zcwang”

fix bug:商品spu额外信息查询

parent 8cf0bb87
Pipeline #43432 passed with stages
in 1 minute 33 seconds
...@@ -606,7 +606,7 @@ public class ChangeFlowBiz { ...@@ -606,7 +606,7 @@ public class ChangeFlowBiz {
List<Long> itemIds = itemList.stream().map(ItemVO::getItemId).collect(Collectors.toList()); List<Long> itemIds = itemList.stream().map(ItemVO::getItemId).collect(Collectors.toList());
// 批量查询spu信息 // 批量查询spu信息
List<SpuTO> spuTOS = itemService.batchQuerySpuInfo(BatchQuerySpuInfoParam.builder().ids(itemIds) List<SpuTO> spuTOS = itemService.batchQuerySpuInfo(BatchQuerySpuInfoParam.builder().ids(itemIds)
.commonProps(new ArrayList<>()).spuProps(new ArrayList<>()).build()); .commonProps(new ArrayList<>()).spuProps(Arrays.asList("itemSetupType","businessForm")).build());
log.debug("[detail] spuTOS:{}", JSON.toJSONString(spuTOS)); log.debug("[detail] spuTOS:{}", JSON.toJSONString(spuTOS));
// 批量查询物理类目 // 批量查询物理类目
Map<Long, List<SimplePhyCateGoryResultCo>> categoryChain = itemService Map<Long, List<SimplePhyCateGoryResultCo>> categoryChain = itemService
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment