|
@@ -180,8 +180,18 @@ public class AppraiseRelaLogic {
|
|
|
|
|
|
public IPage<PgAppraiseApplyVO> applyList(ZfireParamBean zfireParamBean) {
|
|
|
AdminUserCom adminUser = commonLogic.getAdminUser();
|
|
|
- FieldUtils.supplyParam(zfireParamBean, PgAppraiseCategoryVO.class, adminUser);
|
|
|
- return commonMapper.appraiseApplyList(new Page(zfireParamBean.getPageNum(), zfireParamBean.getPageSize()), zfireParamBean);
|
|
|
+ FieldUtils.supplyParam(zfireParamBean, PgAppraiseApplyVO.class, adminUser);
|
|
|
+ final IPage<PgAppraiseApplyVO> page = commonMapper.appraiseApplyList(new Page(zfireParamBean.getPageNum(), zfireParamBean.getPageSize()), zfireParamBean);
|
|
|
+ if (CollectionUtil.isNotEmpty(page.getRecords()) && adminUser.getType() == 0) {
|
|
|
+ // 网点账户置空最高驳回人信息
|
|
|
+ for (PgAppraiseApplyVO record : page.getRecords()) {
|
|
|
+ record.setCloseBy(null);
|
|
|
+ record.setCloseTime(null);
|
|
|
+ record.setRejectBy(null);
|
|
|
+ record.setRejectTime(null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return page;
|
|
|
}
|
|
|
|
|
|
|