Commit f27f6906 authored by LSL's avatar LSL

还款对账文件

parent aa9144b4
......@@ -74,12 +74,22 @@ public class SyncRetryJob {
}
public void sendTs(String loanNo) {
List<LoanPlanModel> list = loanPlanComponent.getByLoan(loanNo);
for (LoanPlanModel planModel : list) {
Boolean planboolean = sendTs(syncBuildComponent.buildAddCaseRequest(planModel.getPlanNo()));
insertRetry(planModel.getPlanNo(), RetryTypeEnum.RETRY_TYPE_BACK_PLAN.getCode(),planboolean);
try {
List<LoanPlanModel> list = loanPlanComponent.getByLoan(loanNo);
for (LoanPlanModel planModel : list) {
try {
Boolean planboolean = sendTs(syncBuildComponent.buildAddCaseRequest(planModel.getPlanNo()));
insertRetry(planModel.getPlanNo(), RetryTypeEnum.RETRY_TYPE_BACK_PLAN.getCode(),planboolean);
}catch (Exception e){
insertRetry(planModel.getPlanNo(), RetryTypeEnum.RETRY_TYPE_BACK_PLAN.getCode(),false);
}
}
insertRetry(loanNo, RetryTypeEnum.RETRY_TYPE_BACK_LOAN.getCode(),true);
}catch (Exception e){
insertRetry(loanNo, RetryTypeEnum.RETRY_TYPE_BACK_LOAN.getCode(),false);
}
insertRetry(loanNo, RetryTypeEnum.RETRY_TYPE_BACK_LOAN.getCode(),true);
}
private void insertRetry(String bizCode,String bizType,Boolean bizState){
WindowsRetry windowsRetry = new WindowsRetry();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment