|
|
@ -193,7 +193,9 @@ public class LoanFileexamineService extends MybatisBaseService<LoanFileexamineMa |
|
|
|
qw.orderByDesc("lf.createTime"); |
|
|
|
IPage<LoanFileexamine> page = PagerUtil.queryToPage(pq); |
|
|
|
IPage<LoanFileexamineVo> pagging = baseMapper.selectPageVo(page, qw); |
|
|
|
for (LoanFileexamineVo record : pagging.getRecords()) { |
|
|
|
List<LoanFileexamineVo> records = pagging.getRecords(); |
|
|
|
if (records != null && records.size() > 0){ |
|
|
|
for (LoanFileexamineVo record : records) { |
|
|
|
List<BusSalesOrderVehicle> busSalesOrderVehicles = busSalesOrderVehicleFeign.selectListByOrderSidAndXdConSid(record.getSaleOrderSid(), record.getLoanContractSid()).getData(); |
|
|
|
String vinNos = ""; |
|
|
|
for (BusSalesOrderVehicle busSalesOrderVehicle : busSalesOrderVehicles) { |
|
|
@ -201,6 +203,7 @@ public class LoanFileexamineService extends MybatisBaseService<LoanFileexamineMa |
|
|
|
} |
|
|
|
record.setVinNo(vinNos.substring(0, vinNos.lastIndexOf(","))); |
|
|
|
} |
|
|
|
} |
|
|
|
PagerVo<LoanFileexamineVo> p = PagerUtil.pageToVo(pagging, null); |
|
|
|
return p; |
|
|
|
} |
|
|
|