Commit 6b6470da by 陶光胜

门店保存修改

parent 1985ccb0
......@@ -1274,15 +1274,15 @@ public class StoreApiServiceImpl implements StoreApiService {
json = QueryConditionAssemblyUtil.createSimpleQueryNode(StoreESFieldsEnum.REGIONID.getField(), OperateEnum.OPERATE_EQ, storeSearchDTO.getRegionId());
jsonObjectList.add(json);
}
if (storeSearchDTO.getProvinceId() != null) {
if (StringUtils.isNotBlank(storeSearchDTO.getProvinceId())) {
json = QueryConditionAssemblyUtil.createSimpleQueryNode(StoreESFieldsEnum.PROVINCEID.getField(), OperateEnum.OPERATE_EQ, storeSearchDTO.getProvinceId());
jsonObjectList.add(json);
}
if (storeSearchDTO.getCityId() != null) {
if (StringUtils.isNotBlank(storeSearchDTO.getCityId())) {
json = QueryConditionAssemblyUtil.createSimpleQueryNode(StoreESFieldsEnum.CITYID.getField(), OperateEnum.OPERATE_EQ, storeSearchDTO.getCityId());
jsonObjectList.add(json);
}
if (storeSearchDTO.getCountyId() != null) {
if (StringUtils.isNotBlank(storeSearchDTO.getCountyId())) {
json = QueryConditionAssemblyUtil.createSimpleQueryNode(StoreESFieldsEnum.COUNTYID.getField(), OperateEnum.OPERATE_EQ, storeSearchDTO.getCountyId());
jsonObjectList.add(json);
}
......
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