|
|
@ -167,6 +167,7 @@ public class AppBusAdvanceGinvoiceapplyService { |
|
|
|
//车辆信息
|
|
|
|
List<AppCarListVo> vinListVos = new ArrayList<>(); |
|
|
|
List<FinBillVehicleVo> finBillVehicles = finBillApplicationDetailsVo.getFinBillVehicles(); |
|
|
|
if (finBillVehicles != null){ |
|
|
|
for (FinBillVehicleVo finBillVehicle : finBillVehicles) { |
|
|
|
AppCarListVo vinListVo = new AppCarListVo(); |
|
|
|
vinListVo.setVin(finBillVehicle.getVinNo()); |
|
|
@ -178,6 +179,7 @@ public class AppBusAdvanceGinvoiceapplyService { |
|
|
|
vinListVo.setInvoiceInfo(finBillVehicle.getOpenTickRemarks()); |
|
|
|
vinListVos.add(vinListVo); |
|
|
|
} |
|
|
|
} |
|
|
|
vo.setVinList(vinListVos); |
|
|
|
//挂车信息
|
|
|
|
List<com.yxt.anrui.fin.api.finbilltrailer.FinBillTrailerVo> finBillTrailers = finBillApplicationDetailsVo.getFinBillTrailers(); |
|
|
@ -203,22 +205,22 @@ public class AppBusAdvanceGinvoiceapplyService { |
|
|
|
List<String> invoiceApplyConfirmImages = new ArrayList<>();//开票信息确认书
|
|
|
|
List<String> registerContractImages = new ArrayList<>();//车辆登记合同
|
|
|
|
List<String> idCardImages = new ArrayList<>(); |
|
|
|
if (zjApplicationAppendxs.size() > 0){ |
|
|
|
if (zjApplicationAppendxs != null){ |
|
|
|
for (FinBillFileVo zjApplicationAppendx : zjApplicationAppendxs) { |
|
|
|
idCardImages.add(zjApplicationAppendx.getFileUrl()); |
|
|
|
} |
|
|
|
} |
|
|
|
if (khkpsqsApplicationAppendxs.size() > 0){ |
|
|
|
if (khkpsqsApplicationAppendxs != null){ |
|
|
|
for (FinBillFileVo khkpsqsApplicationAppendx : khkpsqsApplicationAppendxs) { |
|
|
|
customerInvoiceApplyImages.add(khkpsqsApplicationAppendx.getFileUrl()); |
|
|
|
} |
|
|
|
} |
|
|
|
if (kpxxqrsApplicationAppendxs.size() > 0){ |
|
|
|
if (kpxxqrsApplicationAppendxs != null){ |
|
|
|
for (FinBillFileVo kpxxqrsApplicationAppendx : kpxxqrsApplicationAppendxs) { |
|
|
|
invoiceApplyConfirmImages.add(kpxxqrsApplicationAppendx.getFileUrl()); |
|
|
|
} |
|
|
|
} |
|
|
|
if (cldjhtApplicationAppendxs.size() > 0){ |
|
|
|
if (cldjhtApplicationAppendxs != null){ |
|
|
|
for (FinBillFileVo cldjhtApplicationAppendx : cldjhtApplicationAppendxs) { |
|
|
|
registerContractImages.add(cldjhtApplicationAppendx.getFileUrl()); |
|
|
|
} |
|
|
|