Commit 0c9b6ae0 by fudahua

会员的好友导购列表

parent fc0596a6
......@@ -1032,8 +1032,8 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
Map<String, ClerkDTO> clerkMap = clerkDTOS.stream().collect(Collectors.toMap(ClerkDTO::getClerkId, dto -> dto));
//门店信息
List<String> storeIds = clerkDTOS.stream().map(dto -> dto.getStoreId()).collect(Collectors.toList());
log.info("门店storeIds:{}", JSONObject.toJSONString(storeIds));
List<String> storeIds = relateds.stream().map(dto -> dto.getStoreId()).collect(Collectors.toList());
log.info("门店storeIds:{}", JSONObject.toJSONString(storeIds));
List<StoreDTO> storeDTOS = storeService.queryStore(storeIds);
if (CollectionUtils.isEmpty(storeDTOS)) {
log.info("没有关联的门店");
......
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