Commit d56e7580 by 陶光胜

门店查询支持多个门店控件id聚合

parent c5e8fa1a
......@@ -1484,8 +1484,9 @@ public class StoreApiServiceImpl implements StoreApiService {
logger.info("查询条件:{}", JSON.toJSONString(storeSearchDTO));
List<JSONObject> jsonObjectList = new ArrayList<>();
JSONObject json = null;
JSONObject enterpriseJson = null;
if(storeSearchDTO.getEnterpriseId() != null){
JSONObject enterpriseJson = QueryConditionAssemblyUtil.createSimpleQueryNode(StoreESFieldsEnum.ENTERPRISEID.getField(), OperateEnum.OPERATE_EQ, storeSearchDTO.getEnterpriseId());
enterpriseJson = QueryConditionAssemblyUtil.createSimpleQueryNode(StoreESFieldsEnum.ENTERPRISEID.getField(), OperateEnum.OPERATE_EQ, storeSearchDTO.getEnterpriseId());
jsonObjectList.add(enterpriseJson);
}
if (storeSearchDTO.getStoreGroupId() != null) {
......
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