Commit acebb22e by 陶光胜

重命名

parent 6a317ca7
......@@ -92,7 +92,7 @@ public class StoreSearchUtils {
List<Integer> tempStoreIdList = new ArrayList<>();
if(tempStoreConditionDTO != null) {
Integer tempStoreId = tempStoreConditionDTO.getStoreWidgetId();
tempStoreIdList = this.storeWidgetApiService.listStoreIdByStoreWidgetId(enterpriseId, tempStoreId).getResult();
tempStoreIdList = this.storeWidgetApiService.listStoreInfoIdByStoreWidgetId(enterpriseId, tempStoreId).getResult();
}
final List<Integer> tempStoreIdListf = tempStoreIdList;
log.info("tempStoreIdList:{}", JSON.toJSONString(tempStoreIdListf));
......@@ -119,7 +119,7 @@ public class StoreSearchUtils {
}
if(storeSearchQo.getTmpStore() == 0){
if(CollectionUtils.isNotEmpty(tempStoreIdList)){
storeSearchDTO.setStoreIdsOfNot(StringUtils.join(tempStoreIdList, ","));
storeSearchDTO.setStoreInfoIdsOfNot(StringUtils.join(tempStoreIdList, ","));
}
}
ServiceResponse<Page<StoreDTO>> pageServiceResponse = this.storeApiService.listStore(storeSearchDTO, 1, 20000);
......
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