Browse Source

修改

master
ligaode 1 month ago
parent
commit
81b131f1b3
  1. 50
      anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanvehclearanceapply/LoanVehClearanceApplyService.java

50
anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanvehclearanceapply/LoanVehClearanceApplyService.java

@ -359,21 +359,25 @@ public class LoanVehClearanceApplyService extends MybatisBaseService<LoanVehClea
loanVehClearanceVehFiles.add(loanVehClearanceVehFile3);
//金融方案sid
LoanSolutions loanSolutions = loanSolutionsService.selectBySaleOrderSid(busSalesOrder.getSid());
LoanVehClearanceVehFile loanVehClearanceVehFile4 = new LoanVehClearanceVehFile();
loanVehClearanceVehFile4.setName("金融方案");
loanVehClearanceVehFile4.setSid(loanSolutions.getSid());
loanVehClearanceVehFiles.add(loanVehClearanceVehFile4);
if (loanSolutions != null){
LoanVehClearanceVehFile loanVehClearanceVehFile4 = new LoanVehClearanceVehFile();
loanVehClearanceVehFile4.setName("金融方案");
loanVehClearanceVehFile4.setSid(loanSolutions.getSid());
loanVehClearanceVehFiles.add(loanVehClearanceVehFile4);
}
//家访考察报告sid
String jfkcSid = loanHomevisitInvestigateService.selectByBorrSid(busSalesOrderVehicle1.getBorrowerSid());
LoanVehClearanceVehFile loanVehClearanceVehFile5 = new LoanVehClearanceVehFile();
loanVehClearanceVehFile5.setName("家访考察报告");
loanVehClearanceVehFile5.setSid(jfkcSid);
loanVehClearanceVehFiles.add(loanVehClearanceVehFile5);
//家访考察资料sid
LoanVehClearanceVehFile loanVehClearanceVehFile6 = new LoanVehClearanceVehFile();
loanVehClearanceVehFile6.setName("家访考察资料");
loanVehClearanceVehFile6.setSid(jfkcSid);
loanVehClearanceVehFiles.add(loanVehClearanceVehFile6);
if (StringUtils.isNotBlank(jfkcSid)) {
LoanVehClearanceVehFile loanVehClearanceVehFile5 = new LoanVehClearanceVehFile();
loanVehClearanceVehFile5.setName("家访考察报告");
loanVehClearanceVehFile5.setSid(jfkcSid);
loanVehClearanceVehFiles.add(loanVehClearanceVehFile5);
//家访考察资料sid
LoanVehClearanceVehFile loanVehClearanceVehFile6 = new LoanVehClearanceVehFile();
loanVehClearanceVehFile6.setName("家访考察资料");
loanVehClearanceVehFile6.setSid(jfkcSid);
loanVehClearanceVehFiles.add(loanVehClearanceVehFile6);
}
loanVehClearanceVehDetailsVo.setSids(loanVehClearanceVehFiles);
}
vo.setLoanVehClearanceVehList(loanVehClearanceVehDetailsVoList);
@ -440,15 +444,17 @@ public class LoanVehClearanceApplyService extends MybatisBaseService<LoanVehClea
loanVehClearanceVehFiles.add(LoanVehClearanceVehFile4);
//家访考察报告sid
String sid = loanHomevisitInvestigateService.selectByBorrSid(busSalesOrderVehicle.getBorrowerSid());
LoanVehClearanceVehFile LoanVehClearanceVehFile5 = new LoanVehClearanceVehFile();
LoanVehClearanceVehFile5.setName("家访考察报告");
LoanVehClearanceVehFile5.setSid(sid);
loanVehClearanceVehFiles.add(LoanVehClearanceVehFile5);
//家访考察资料sid
LoanVehClearanceVehFile LoanVehClearanceVehFile6 = new LoanVehClearanceVehFile();
LoanVehClearanceVehFile6.setName("家访考察资料");
LoanVehClearanceVehFile6.setSid(sid);
loanVehClearanceVehFiles.add(LoanVehClearanceVehFile6);
if (StringUtils.isNotBlank(sid)) {
LoanVehClearanceVehFile LoanVehClearanceVehFile5 = new LoanVehClearanceVehFile();
LoanVehClearanceVehFile5.setName("家访考察报告");
LoanVehClearanceVehFile5.setSid(sid);
loanVehClearanceVehFiles.add(LoanVehClearanceVehFile5);
//家访考察资料sid
LoanVehClearanceVehFile LoanVehClearanceVehFile6 = new LoanVehClearanceVehFile();
LoanVehClearanceVehFile6.setName("家访考察资料");
LoanVehClearanceVehFile6.setSid(sid);
loanVehClearanceVehFiles.add(LoanVehClearanceVehFile6);
}
loanVehClearanceVehDetailsVo.setSids(loanVehClearanceVehFiles);
loanVehClearanceVehDetailsVoList.add(loanVehClearanceVehDetailsVo);
}

Loading…
Cancel
Save