Commit 3b4bb894 by zhiwj

bug

parent 8fd89639
......@@ -187,7 +187,9 @@ public class StoreController extends DownloadUtils {
}else {
returnFileds += ","+obj.toString();
}
returnFileds += "," + StoreESFieldsEnum.COMPLETESTATUS;
if (!returnFileds.contains(StoreESFieldsEnum.COMPLETESTATUS.getField())) {
returnFileds += "," + StoreESFieldsEnum.COMPLETESTATUS.getField();
}
ServiceResponse<Page<StoreDTO>> serviceResponse = storeApiService.listStore(storeSearchDTO, storeSearchDTO.getCurrentPage(), storeSearchDTO.getPageSize(), returnFileds);
if (serviceResponse.isSuccess()) {
Page<StoreDTO> page = serviceResponse.getResult();
......
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