|
|
@ -1087,6 +1087,11 @@ public class BusArrearsCarryVehicleApplyService extends MybatisBaseService<BusAr |
|
|
|
String zjlLetterImages = String.join(",", zjlLetter).replaceAll(fileUploadComponent.getUrlPrefix(), ""); |
|
|
|
busArrearsCarryVehicleApply.setZjlLetterFile(zjlLetterImages); |
|
|
|
} |
|
|
|
List<String> otherFile = dto.getFileList(); |
|
|
|
if (!otherFile.isEmpty()) { |
|
|
|
String fileLists = String.join(",", otherFile).replaceAll(fileUploadComponent.getUrlPrefix(), ""); |
|
|
|
busArrearsCarryVehicleApply.setOtherFile(fileLists); |
|
|
|
} |
|
|
|
//车辆
|
|
|
|
List<AdCarListVo> adCarListVoList = dto.getVinList(); |
|
|
|
if (adCarListVoList.isEmpty()) { |
|
|
@ -1120,6 +1125,10 @@ public class BusArrearsCarryVehicleApplyService extends MybatisBaseService<BusAr |
|
|
|
return rb.setMsg("该申请不存在"); |
|
|
|
} |
|
|
|
BeanUtil.copyProperties(dto, busArrearsCarryVehicleApply, "sid"); |
|
|
|
if("0".equals(busArrearsCarryVehicleApply.getIsFinance())){ |
|
|
|
busArrearsCarryVehicleApply.setFinanceName(""); |
|
|
|
busArrearsCarryVehicleApply.setFinanceUserSid(""); |
|
|
|
} |
|
|
|
List<String> carContract = dto.getCarContract(); |
|
|
|
if (!carContract.isEmpty()) { |
|
|
|
String carContractImages = String.join(",", carContract).replaceAll(fileUploadComponent.getUrlPrefix(), ""); |
|
|
@ -1140,6 +1149,11 @@ public class BusArrearsCarryVehicleApplyService extends MybatisBaseService<BusAr |
|
|
|
String zjlLetterImages = String.join(",", zjlLetter).replaceAll(fileUploadComponent.getUrlPrefix(), ""); |
|
|
|
busArrearsCarryVehicleApply.setZjlLetterFile(zjlLetterImages); |
|
|
|
} |
|
|
|
List<String> otherFile = dto.getFileList(); |
|
|
|
if (!otherFile.isEmpty()) { |
|
|
|
String fileLists = String.join(",", otherFile).replaceAll(fileUploadComponent.getUrlPrefix(), ""); |
|
|
|
busArrearsCarryVehicleApply.setOtherFile(fileLists); |
|
|
|
} |
|
|
|
//车辆
|
|
|
|
List<AdCarListVo> adCarListVoList = dto.getVinList(); |
|
|
|
if (adCarListVoList.isEmpty()) { |
|
|
|