|
|
@@ -325,6 +325,20 @@ public class CreditHandleController extends BaseController {
|
|
|
throw new Exception("获取融信信息失败");
|
|
|
}
|
|
|
approvalService.addInformationApproval(CommonUtil.entityToMap(finance));
|
|
|
+ //待办更改为已办
|
|
|
+ LambdaQueryWrapper<SysNotice> noticeLambdaQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
+ //待办
|
|
|
+ noticeLambdaQueryWrapper.eq(SysNotice::getStatus,"0");
|
|
|
+ //融信编号
|
|
|
+ noticeLambdaQueryWrapper.eq(SysNotice::getTableId,zfiId);
|
|
|
+ //待签收
|
|
|
+ noticeLambdaQueryWrapper.eq(SysNotice::getWorkType,"04");
|
|
|
+ //待办
|
|
|
+ noticeLambdaQueryWrapper.eq(SysNotice::getType,"00");
|
|
|
+ SysNotice notice = new SysNotice();
|
|
|
+ //已办
|
|
|
+ notice.setStatus("1");
|
|
|
+ sysNoticeService.update(notice,noticeLambdaQueryWrapper);
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
|
|