Commit 8bc8337f by songyinghui

feat: 门店信息

parent e116424f
......@@ -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