Commit 52d73afc by zhiwj

门店搜索

parent 0edb048f
......@@ -1625,14 +1625,18 @@ public class StoreApiServiceImpl implements StoreApiService {
ServiceResponse<JSONObject> jsonObjectServiceResponse = this.parseStoreSelectJson(storeSearchDTO.getSearchJson());
if(jsonObjectServiceResponse.isSuccess()){
json = jsonObjectServiceResponse.getResult();
jsonObjectList.add(json);
if (json != null) {
jsonObjectList.add(json);
}
}
}
if(StringUtils.isNotBlank(storeSearchDTO.getAuthSearchJson()) && !"{}".equals(storeSearchDTO.getAuthSearchJson())){
ServiceResponse<JSONObject> jsonObjectServiceResponse = this.parseStoreSelectJson(storeSearchDTO.getAuthSearchJson());
if(jsonObjectServiceResponse.isSuccess()){
json = jsonObjectServiceResponse.getResult();
jsonObjectList.add(json);
if (json != null) {
jsonObjectList.add(json);
}
}
}
if(StringUtils.isNotBlank(storeSearchDTO.getLatitude()) && StringUtils.isNotBlank(storeSearchDTO.getLongitude())){
......
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