Commit e2ab0afd by songyinghui

Merge branch 'feature-content2' into developer

parents 0aae9c94 8bc8337f
......@@ -423,7 +423,8 @@ public class MaterialDataStaticsController {
.stream()
.map(MaterialStoreUsedDataVO::getStoreId)
.collect(Collectors.toList());
List<StoreDTO> storeDTOS = storeService.queryStore(tempStoreIds);
String[] storeIdsArry = new String[tempStoreIds.size()];
List<StoreDTO> storeDTOS = storeService.getStores(tempStoreIds.toArray(storeIdsArry));
Map<String, StoreDTO> storeInfoMap = Collections.emptyMap();
if (CollectionUtils.isNotEmpty(storeDTOS)) {
storeInfoMap = storeDTOS
......
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