Commit 96ea8a61 by 陶光胜

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

parent aa0e2c01
......@@ -247,7 +247,9 @@ public class StoreWidgetApiServiceImpl implements StoreWidgetApiService {
storeColumnSet.getErpStatus().add(storeDTO.getErpStatus());
storeColumnSet.getRegion().add(storeDTO.getRegionId());
storeColumnSet.getStatus().add(storeDTO.getStatus());
storeColumnSet.getStoreGroupId().addAll(storeDTO.getStoreGroupIdList());
if(CollectionUtils.isNotEmpty(storeDTO.getStoreGroupIdList())){
storeColumnSet.getStoreGroupId().addAll(storeDTO.getStoreGroupIdList());
}
storeColumnSet.getStoreType().add(storeDTO.getStoreType());
}
}
......
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