|
@@ -303,12 +303,16 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
customerCarRec.setBusinessType("2");
|
|
|
customerCarRec.setServiceOperation(1);//默认运营车辆
|
|
|
noCarWayBill.setTitleType(2);
|
|
|
+ noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
//先查询上游是否已经备案
|
|
|
RespR<VehicleQueryResponse> respRquery = noCarService.customerCarRecQueryUpper(customerCarRec);
|
|
|
if(respRquery.getCode() == 1 || respRquery.getData() == null || respRquery.getData().getResult() == null || respRquery.getData().getResult().size()<=0){
|
|
|
customerCarRecs.add(customerCarRec);
|
|
|
RespR respR = noCarService.customerCarRec(customerCarRecs);
|
|
|
if(respR.getCode() ==1){
|
|
|
+ noCarWayBill.setFailReason(respR.getMsg());
|
|
|
+ noCarWayBill.setBillwayStatus(-2);
|
|
|
+ insertOrUpdateBill(noCarWayBill);
|
|
|
result.setMsg("车牌号备案失败,失败原因:"+respR.getMsg());
|
|
|
return result;
|
|
|
}
|
|
@@ -327,6 +331,9 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
result.setData(3);
|
|
|
result.setCode(200);
|
|
|
result.setMsg(rs.getMsg());
|
|
|
+ noCarWayBill.setFailReason(rs.getMsg());
|
|
|
+ noCarWayBill.setBillwayStatus(-2);
|
|
|
+ insertOrUpdateBill(noCarWayBill);
|
|
|
return result;
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
@@ -386,7 +393,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
noCarWayBill.setStartTime(noCarWayBill1.getStartTime());
|
|
|
noCarWayBill.setHisFlag(noCarWayBill1.getHisFlag());
|
|
|
noCarWayBill.setInterType(0);//接口
|
|
|
-
|
|
|
+ noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
RespR rs = noCarService.noCarWaybillEnd(noCarWayBill);
|
|
|
long costtimeend = System.currentTimeMillis();
|
|
|
log.info("[-NoCarInterServiceImpl.noCarBillEnd-] result is "
|
|
@@ -483,7 +490,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
noCarWayBill.setFee(fee.longValue());
|
|
|
noCarWayBill.setTitleType(titleType);
|
|
|
noCarWayBill.setTaxplayerCode(taxplayerCode);
|
|
|
-
|
|
|
+ noCarWayBill.setHisFlag(1);
|
|
|
|
|
|
NoCarWayBill noCarWayBillDb = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
|
|
|
@@ -502,6 +509,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
customerCarRec.setBusinessType("2");
|
|
|
customerCarRec.setServiceOperation(1);//默认运营车辆
|
|
|
noCarWayBill.setTitleType(2);
|
|
|
+ noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
//先查询上游是否已经备案
|
|
|
RespR<VehicleQueryResponse> respRquery = noCarService.customerCarRecQueryUpper(customerCarRec);
|
|
|
if(respRquery.getCode() == 1 || respRquery.getData() == null || respRquery.getData().getResult() == null || respRquery.getData().getResult().size()<=0){
|
|
@@ -509,6 +517,9 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
RespR respR = noCarService.customerCarRec(customerCarRecs);
|
|
|
if(respR.getCode() ==1){
|
|
|
result.setMsg("车牌号备案失败,失败原因:"+respR.getMsg());
|
|
|
+ noCarWayBill.setFailReason(respR.getMsg());
|
|
|
+ noCarWayBill.setBillwayStatus(-2);
|
|
|
+ insertOrUpdateBill(noCarWayBill);
|
|
|
return result;
|
|
|
}
|
|
|
}
|
|
@@ -523,9 +534,13 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
result.setMsg(rs.getData().toString());
|
|
|
return result;
|
|
|
} else {
|
|
|
+
|
|
|
result.setData(3);
|
|
|
result.setCode(200);
|
|
|
result.setMsg(rs.getMsg());
|
|
|
+ noCarWayBill.setFailReason(rs.getMsg());
|
|
|
+ noCarWayBill.setBillwayStatus(-2);
|
|
|
+ insertOrUpdateBill(noCarWayBill);
|
|
|
return result;
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
@@ -535,7 +550,15 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
+ //插入或者更新运单
|
|
|
+ public void insertOrUpdateBill(NoCarWayBill noCarWayBill){
|
|
|
|
|
|
+ if(noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum()) == null){
|
|
|
+ noCarWaybillMapper.insert(noCarWayBill);
|
|
|
+ }else{
|
|
|
+ noCarWaybillMapper.updateByBillNum(noCarWayBill);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
@@ -575,6 +598,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
|
|
|
NoCarWayBill noCarWayBill1 = noCarWaybillMapper.selectByBillNum(num);
|
|
|
if (null == noCarWayBill1){
|
|
|
+ result.setMsg("未上传开始运单");
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -586,7 +610,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
noCarWayBill.setStartTime(noCarWayBill1.getStartTime());
|
|
|
noCarWayBill.setHisFlag(noCarWayBill1.getHisFlag());
|
|
|
noCarWayBill.setInterType(0);//接口
|
|
|
-
|
|
|
+ noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
RespR rs = noCarService.noCarHisWaybillEnd(noCarWayBill);
|
|
|
long costtimeend = System.currentTimeMillis();
|
|
|
log.info("[-NoCarInterServiceImpl.noCarHisWaybillEnd-] result is "
|