|
@@ -88,7 +88,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
customerRecP.setCustomerName(customerCarRec2.getCustomerName());
|
|
customerRecP.setCustomerName(customerCarRec2.getCustomerName());
|
|
customerRecP.setCompanyName(customerCarRec2.getCompanyName());
|
|
customerRecP.setCompanyName(customerCarRec2.getCompanyName());
|
|
CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecP);
|
|
CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecP);
|
|
- if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
|
|
|
|
+ if(customerRec == null){
|
|
res.append("#客户:"+customerCarRec2.getCustomerName()+"企业:"+customerCarRec2.getCompanyName()+"备案信息不存在");
|
|
res.append("#客户:"+customerCarRec2.getCustomerName()+"企业:"+customerCarRec2.getCompanyName()+"备案信息不存在");
|
|
MIX_LOG.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
MIX_LOG.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
return new RespR(false,res.toString());
|
|
return new RespR(false,res.toString());
|
|
@@ -111,6 +111,10 @@ public class NoCarServiceImpl implements NoCarService{
|
|
vehicleQueryRequest.setPlateColor(Integer.parseInt(customerCarRec.getCarColor()));
|
|
vehicleQueryRequest.setPlateColor(Integer.parseInt(customerCarRec.getCarColor()));
|
|
vehicleQueryRequest.setPlateNum(customerCarRec.getCarNum());
|
|
vehicleQueryRequest.setPlateNum(customerCarRec.getCarNum());
|
|
vehicleQueryRequest.setWaybillSource(1);
|
|
vehicleQueryRequest.setWaybillSource(1);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ //如果是接口,直接调用上游车辆备案
|
|
|
|
+ if(0 != customerCarRec.getInterType() ){
|
|
RespR<VehicleQueryResponse> respRB = noCarInterface.vehicleQuery(vehicleQueryRequest);
|
|
RespR<VehicleQueryResponse> respRB = noCarInterface.vehicleQuery(vehicleQueryRequest);
|
|
if(respRB.getCode()!=1 && respRB.getData().getResult()!=null && respRB.getData().getResult().size()>0){
|
|
if(respRB.getCode()!=1 && respRB.getData().getResult()!=null && respRB.getData().getResult().size()>0){
|
|
customerCarRec.setRecStatus(CommonConstants.REC_STATUS_SUC);
|
|
customerCarRec.setRecStatus(CommonConstants.REC_STATUS_SUC);
|
|
@@ -118,6 +122,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
//根据车牌号查询是新增还是更新
|
|
//根据车牌号查询是新增还是更新
|
|
updateCustomerCarRec(customerCarRec);
|
|
updateCustomerCarRec(customerCarRec);
|
|
continue;
|
|
continue;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
//如果业务类型是无车
|
|
//如果业务类型是无车
|
|
VehicleRegisterRequest vehicleRegisterRequest = new VehicleRegisterRequest();
|
|
VehicleRegisterRequest vehicleRegisterRequest = new VehicleRegisterRequest();
|
|
@@ -139,6 +144,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
customerCarRec.setFailReason(respR.getMsg());
|
|
customerCarRec.setFailReason(respR.getMsg());
|
|
customerCarRec.setFailTime(DateUtil.getCurrentDateStr());
|
|
customerCarRec.setFailTime(DateUtil.getCurrentDateStr());
|
|
} else {
|
|
} else {
|
|
|
|
+ respRResult = respR.getMsg();//车辆备案成功
|
|
customerCarRec.setRecStatus(CommonConstants.REC_STATUS_SUC);
|
|
customerCarRec.setRecStatus(CommonConstants.REC_STATUS_SUC);
|
|
customerCarRec.setSuccTime(DateUtil.getCurrentDateStr());
|
|
customerCarRec.setSuccTime(DateUtil.getCurrentDateStr());
|
|
}
|
|
}
|
|
@@ -148,7 +154,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
}
|
|
}
|
|
if(StringUtils.isEmpty(res.toString())){
|
|
if(StringUtils.isEmpty(res.toString())){
|
|
MIX_LOG.info("车辆备案成功");
|
|
MIX_LOG.info("车辆备案成功");
|
|
- return new RespR("车辆备案成功");
|
|
|
|
|
|
+ return new RespR(respRResult);
|
|
}else {
|
|
}else {
|
|
MIX_LOG.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
MIX_LOG.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
return new RespR(false,res.toString());
|
|
return new RespR(false,res.toString());
|