|
@@ -272,6 +272,10 @@ public class PaymentApplyServiceImpl extends ServiceImpl<PaymentApplyMapper, Pay
|
|
|
result = flowableService.completeMyTask(paymentApply.getTaskId(), financingBasicInfo, procVariables,
|
|
|
"无豁免", paymentApplyHis.getId(), msgVariables, key, legalSpecialists);
|
|
|
}
|
|
|
+ //修改融资申请当前阶段
|
|
|
+ financingBasicInfo.setCurrentStage(FinancingCurrentStageEnum.PAYMENT_APPROVAL.getCode());
|
|
|
+ financingBasicInfoService.updateById(financingBasicInfo);
|
|
|
+
|
|
|
if (result == null || !result) {
|
|
|
throw new ValidatorException(CodeUtil.FAIL, "法务终审提交时出错啦!");
|
|
|
}
|
|
@@ -409,7 +413,7 @@ public class PaymentApplyServiceImpl extends ServiceImpl<PaymentApplyMapper, Pay
|
|
|
}
|
|
|
if (paymentApproval.getApprovalConclusion().equals(ConstantConversionUtil.APPROVAL_RESULT_PASS)) {
|
|
|
//修改融资申请当前阶段
|
|
|
- financingBasicInfo.setCurrentStage(FinancingCurrentStageEnum.PAYMENT_APPROVAL.getCode());
|
|
|
+ financingBasicInfo.setCurrentStage("");
|
|
|
//修改融资申请状态
|
|
|
financingBasicInfo.setFinancingStatus(ProjectInitiationStatusDict.ChildEnum.COMPLETED.getCode());
|
|
|
financingBasicInfoService.updateById(financingBasicInfo);
|
|
@@ -427,7 +431,7 @@ public class PaymentApplyServiceImpl extends ServiceImpl<PaymentApplyMapper, Pay
|
|
|
|
|
|
@Override
|
|
|
public List<PaymentCondition> findConditions(Long applyId) {
|
|
|
- return paymentConditionService.lambdaQuery().eq(PaymentCondition::getPaymentApplyId,applyId).list();
|
|
|
+ return paymentConditionService.lambdaQuery().eq(PaymentCondition::getPaymentApplyId, applyId).list();
|
|
|
}
|
|
|
|
|
|
/**
|