|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.glxp.api.controller.basic;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
|
import com.glxp.api.annotation.AuthRuleAnnotation;
|
|
|
|
|
import com.glxp.api.annotation.Log;
|
|
|
|
@ -63,6 +64,11 @@ public class BasicInCodeController {
|
|
|
|
|
|
|
|
|
|
List<IoOrderDetailBizResponse> ioOrderDetailBizResponseList = ioOrderDetailBizService.filterList(filterOrderDetailBizRequest);
|
|
|
|
|
|
|
|
|
|
for (IoOrderDetailBizResponse ioOrderDetailBizResponse : ioOrderDetailBizResponseList){
|
|
|
|
|
if (StrUtil.isEmpty(ioOrderDetailBizResponse.getSpec() )){
|
|
|
|
|
ioOrderDetailBizResponse.setSpec(ioOrderDetailBizResponse.getBzgg());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
PageInfo<IoOrderDetailBizResponse> pageInfo = new PageInfo<>(ioOrderDetailBizResponseList);
|
|
|
|
|
PageSimpleResponse<IoOrderDetailBizResponse> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
|
|
|
|