|
@@ -87,6 +87,12 @@ public class OwnCreditController extends BaseController {
|
|
|
//融资记录服务类
|
|
|
@Autowired
|
|
|
private IZcFinanceRecordService iZcFinanceRecordService;
|
|
|
+ //待办服务类
|
|
|
+ @Autowired
|
|
|
+ private ISysNoticeService sysNoticeService;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 查询融信信息
|
|
@@ -720,6 +726,15 @@ public class OwnCreditController extends BaseController {
|
|
|
approvalService.coreConfirmationApproval(CommonUtil.entityToMap(financeInf));
|
|
|
}
|
|
|
}
|
|
|
+ //审批拒绝待编辑待办更改为已办
|
|
|
+ LambdaQueryWrapper<SysNotice> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
+ queryWrapper.eq(SysNotice::getTableId,id);
|
|
|
+ queryWrapper.eq(SysNotice::getType,"00");
|
|
|
+ queryWrapper.eq(SysNotice::getWorkType,"01");
|
|
|
+ queryWrapper.eq(SysNotice::getStatus,"0");
|
|
|
+ SysNotice notice = new SysNotice();
|
|
|
+ notice.setStatus("1");
|
|
|
+ sysNoticeService.update(notice,queryWrapper);
|
|
|
|
|
|
return AjaxResult.success();
|
|
|
}
|