Commit db9e47e6 by 陶光胜

门店状态变更

parent afbddd05
......@@ -191,7 +191,7 @@ public class StoreAuthorizationApiServiceImpl implements StoreAuthorizationApiSe
StoreDTO storeDTO = list.get(k);
regionSet.add(storeDTO.getRegionId());
storeTypeSet.add(storeDTO.getStoreType() == null ? null : storeDTO.getStoreType().toString());
storeStatusSet.add(storeDTO.getErpStatus() == null ? null : storeDTO.getErpStatus().toString());
storeStatusSet.add(storeDTO.getStatus() == null ? null : storeDTO.getStatus().toString());
if(page == pages && k == list.size()-1) {
isEnd = 1;
}
......
......@@ -227,9 +227,6 @@ public class StoreWidgetApiServiceImpl implements StoreWidgetApiService {
List<StoreDTO> result = page.getResult();
if(CollectionUtils.isNotEmpty(result)){
for(StoreDTO storeDTO : result){
if(storeDTO.getErpStatus() != null){
storeColumnSet.getErpStatus().add(storeDTO.getErpStatus());
}
if(storeDTO.getRegionId() != null){
storeColumnSet.getRegion().add(storeDTO.getRegionId());
}
......
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