Commit 4ae7dd55 by huangZW

111

parent 31bb18be
...@@ -140,17 +140,17 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA ...@@ -140,17 +140,17 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
ESResponseQuerySingle responseQuery = eSDataDynamicOperationApiService.queryDataSingle(dynamicSearchDTO); ESResponseQuerySingle responseQuery = eSDataDynamicOperationApiService.queryDataSingle(dynamicSearchDTO);
if(null == responseQuery){ if(null == responseQuery){
log.info("会员不存在1"); log.info("会员不存在1");
return null; continue;
} }
JSONObject res = responseQuery.getRes(); JSONObject res = responseQuery.getRes();
if(res == null){ if(res == null){
log.info("会员不存在2"); log.info("会员不存在2");
return null; continue;
} }
String storeId = res.get("storeId") == null?"":res.get("storeId").toString(); String storeId = res.get("storeId") == null?"":res.get("storeId").toString();
if(StringUtils.isEmpty(storeId)){ if(StringUtils.isEmpty(storeId)){
log.info("会员门店不存在"); log.info("会员门店不存在");
return null; continue;
} }
String[] memberStoreIds =storeId.split(" "); String[] memberStoreIds =storeId.split(" ");
List<String> memberStoreIdList = Arrays.asList(memberStoreIds); List<String> memberStoreIdList = Arrays.asList(memberStoreIds);
......
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