|
|
@ -421,6 +421,9 @@ public class FinBillApplicationService extends MybatisBaseService<FinBillApplica |
|
|
|
IPage page = PagerUtil.queryToPage(pq); |
|
|
|
IPage<PcSelBillVinNoPageVo> pagging = baseMapper.getSelectVinsList(page, qw); |
|
|
|
for (PcSelBillVinNoPageVo record : pagging.getRecords()) { |
|
|
|
//车架号截取后八位
|
|
|
|
String vin = record.getVin(); |
|
|
|
record.setVin(vin.substring(vin.length() - 8)); |
|
|
|
//开票单位
|
|
|
|
if (StringUtils.isNotBlank(record.getPurchaseSystemSid())) { |
|
|
|
ResultBean<FinCompanyInvoicingDetailsVo> invoicingDetailsVoResultBean = finCompanyInvoicingService.getDetailsByUseOrgAndSystem(useOrgSid, record.getPurchaseSystemSid()); |
|
|
|