|
|
|
@ -137,7 +137,7 @@ public class DgLoanNoticeServiceImpl extends ServiceImpl<DgLoanNoticeMapper, DgL |
|
|
|
|
DgLoanNotice loanNotice = baseMapper.selectOne(loanNoticeQueryWrapper); |
|
|
|
|
loanNotice.setAuditOpinion(auditOpinion); |
|
|
|
|
loanNotice.setConsiderId(currentUser); |
|
|
|
|
loanNotice.setStatus(StatusCode.SP_REVIEWED); |
|
|
|
|
loanNotice.setStatus(StatusCode.SP_REJECT); |
|
|
|
|
loanNotice.setOperatingStatus(StatusCode.CZ_PROCESSED); |
|
|
|
|
int update = baseMapper.updateById(loanNotice); |
|
|
|
|
//同时往审核流程进程表新增一条记录
|
|
|
|
@ -150,6 +150,7 @@ public class DgLoanNoticeServiceImpl extends ServiceImpl<DgLoanNoticeMapper, DgL |
|
|
|
|
DgPaymentConfirmationConsider paymentConfirmationConsider = paymentConfirmationConsiderMapper.selectOne(queryWrapper); |
|
|
|
|
paymentConfirmationConsider.setStatus(StatusCode.SP_REJECT); |
|
|
|
|
paymentConfirmationConsider.setOperatingStatus(StatusCode.CZ_ON_HAND); |
|
|
|
|
paymentConfirmationConsider.setAuditOpinion(""); |
|
|
|
|
int updateById = paymentConfirmationConsiderMapper.updateById(paymentConfirmationConsider); |
|
|
|
|
//更新成功,返回操作结果
|
|
|
|
|
log.info(updateById > 0 ? "驳回更新财务部经理成功" : "驳回更新财务部经理失败"); |
|
|
|
|