Commit f27f6906 authored by LSL's avatar LSL

还款对账文件

parent aa9144b4
...@@ -74,12 +74,22 @@ public class SyncRetryJob { ...@@ -74,12 +74,22 @@ public class SyncRetryJob {
} }
public void sendTs(String loanNo) { public void sendTs(String loanNo) {
List<LoanPlanModel> list = loanPlanComponent.getByLoan(loanNo); try {
for (LoanPlanModel planModel : list) { List<LoanPlanModel> list = loanPlanComponent.getByLoan(loanNo);
Boolean planboolean = sendTs(syncBuildComponent.buildAddCaseRequest(planModel.getPlanNo())); for (LoanPlanModel planModel : list) {
insertRetry(planModel.getPlanNo(), RetryTypeEnum.RETRY_TYPE_BACK_PLAN.getCode(),planboolean); 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){ private void insertRetry(String bizCode,String bizType,Boolean bizState){
WindowsRetry windowsRetry = new WindowsRetry(); 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