|
|
@ -787,10 +787,10 @@ public class BusHandoverService extends MybatisBaseService<BusHandoverMapper, Bu |
|
|
|
BusHandoverPrepareVehicle prepareVehicle = busHandoverPrepareVehicleService.fetchDetailsByVinSid(handoverWait.getVinSid()); |
|
|
|
if (null != prepareVehicle) { |
|
|
|
if (prepareVehicle.getInvoicingState() > 0) { |
|
|
|
sb.append("发票、"); |
|
|
|
sb.append("发票").append("、"); |
|
|
|
} |
|
|
|
if (prepareVehicle.getCertificateState() > 0) { |
|
|
|
sb.append("合格证、"); |
|
|
|
sb.append("合格证").append("、"); |
|
|
|
} |
|
|
|
if (prepareVehicle.getOnBoardDataState() > 0) { |
|
|
|
BusVehicleInformationHandoverDetailsListVo data = busVehicleInformationHandoverService.detailsByVinSid(handoverWait.getVinSid()).getData(); |
|
|
@ -798,15 +798,11 @@ public class BusHandoverService extends MybatisBaseService<BusHandoverMapper, Bu |
|
|
|
itemVo.setIsFuelVehicle(data.getIsFuelVehicle()); |
|
|
|
if (data.getInformations().size() > 0) { |
|
|
|
List<BusVehicleInformationVo> informations = data.getInformations(); |
|
|
|
String keyNum = ""; |
|
|
|
for (BusVehicleInformationVo information : informations) { |
|
|
|
keyNum = information.getVehicleKeyNum(); |
|
|
|
} |
|
|
|
if (Integer.parseInt(data.getIsFuelVehicle()) > 0) { |
|
|
|
//0是燃气车 1不是燃气车
|
|
|
|
sb.append(keyNum + "把车钥匙、一致性证书、申请表、保修手册、说明书、环保清单、驾驶员卡、"); |
|
|
|
} else { |
|
|
|
sb.append(keyNum + "把车钥匙、一致性证书、申请表、保修手册、说明书、环保清单、驾驶员卡、气瓶产品质量证书(燃气车)、"); |
|
|
|
sb.append(information.getVehicleHandoverData()); |
|
|
|
if (StringUtils.isNotBlank(information.getVehicleHandoverData())) { |
|
|
|
sb.append("、"); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|