|
|
@ -374,6 +374,20 @@ public class DgGuaranteeLetterAssignUserServiceImpl extends ServiceImpl<DgGuaran |
|
|
|
paymentConfirmationConsiderCWB.setAuditOpinion(""); |
|
|
|
paymentConfirmationConsiderCWB.setAuditOpinion(""); |
|
|
|
insert = paymentConfirmationConsiderMapper.updateById(paymentConfirmationConsiderCWB); |
|
|
|
insert = paymentConfirmationConsiderMapper.updateById(paymentConfirmationConsiderCWB); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//法规部数据存在,更新法规部经理财务回款数据
|
|
|
|
|
|
|
|
QueryWrapper<DgPaymentConfirmationConsider> paymentConfirmationConsiderFG = new QueryWrapper<>(); |
|
|
|
|
|
|
|
paymentConfirmationConsiderFG.eq("business_id",businessId).eq("role_id",PromptSuccess.FG_JL_ID); |
|
|
|
|
|
|
|
DgPaymentConfirmationConsider paymentConfirmationConsiderFg = paymentConfirmationConsiderMapper.selectOne(paymentConfirmationConsiderFG); |
|
|
|
|
|
|
|
//数据存在,进行更新
|
|
|
|
|
|
|
|
if (ObjectUtil.isNotNull(paymentConfirmationConsiderFg)){ |
|
|
|
|
|
|
|
paymentConfirmationConsiderFg.setStatus(StatusCode.SP_IN_REVIEW); |
|
|
|
|
|
|
|
paymentConfirmationConsiderFg.setOperatingStatus(StatusCode.CZ_PROCESSED); |
|
|
|
|
|
|
|
//清空上次的审批意见及银行回单
|
|
|
|
|
|
|
|
paymentConfirmationConsiderFg.setAuditOpinion(""); |
|
|
|
|
|
|
|
paymentConfirmationConsiderFg.setImgFile(""); |
|
|
|
|
|
|
|
paymentConfirmationConsiderMapper.updateById(paymentConfirmationConsiderFg); |
|
|
|
|
|
|
|
} |
|
|
|
//更新成功,返回操作结果
|
|
|
|
//更新成功,返回操作结果
|
|
|
|
log.info(insert > 0 ? "资产部经理成功添加回款数据" : "资产部经理添加回款数据失败"); |
|
|
|
log.info(insert > 0 ? "资产部经理成功添加回款数据" : "资产部经理添加回款数据失败"); |
|
|
|
return insert > 0; |
|
|
|
return insert > 0; |
|
|
|