|
@@ -220,10 +220,22 @@ public class NoCarServiceImpl implements NoCarService{
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
- public RespR noCarWaybillStart(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBillDb) {
|
|
|
|
|
|
+ public RespR noCarWaybillStart(NoCarWayBill noCarWayBill) {
|
|
log.info("运单上传开始:NoCarServiceImpl.noCarWaybillStart{}",noCarWayBill);
|
|
log.info("运单上传开始:NoCarServiceImpl.noCarWaybillStart{}",noCarWayBill);
|
|
|
|
+ NoCarWayBill noCarWayBillDb = null;
|
|
|
|
+ try {
|
|
|
|
+ noCarWayBillDb = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
|
|
+ }catch (Exception e){
|
|
|
|
+ return new RespR(false,"有重复运单,请联系管理员删除");
|
|
|
|
+ }
|
|
|
|
+ if(noCarWayBillDb!=null && noCarWayBillDb.getBillwayStatus()>0){
|
|
|
|
+ return new RespR(false,"开始指令已经上传成功");
|
|
|
|
+ }
|
|
//如果运单时间和当前时间差了三天,直接返回
|
|
//如果运单时间和当前时间差了三天,直接返回
|
|
if(DateUtil.getDistanceHours(noCarWayBill.getStartTime(),new Date())<-72){
|
|
if(DateUtil.getDistanceHours(noCarWayBill.getStartTime(),new Date())<-72){
|
|
|
|
+ noCarWayBill.setFailReason("失败,运单开始时间超72小时");
|
|
|
|
+ noCarWayBill.setBillwayStatus(-2);
|
|
|
|
+ insertOrUpdateBillStart(noCarWayBill);
|
|
return new RespR(false,"失败,运单开始时间超72小时");
|
|
return new RespR(false,"失败,运单开始时间超72小时");
|
|
}
|
|
}
|
|
/* if((DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
|
|
/* if((DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
|
|
@@ -233,28 +245,34 @@ public class NoCarServiceImpl implements NoCarService{
|
|
RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
|
|
RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
|
|
if(respR.getCode() == 1){
|
|
if(respR.getCode() == 1){
|
|
log.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
|
|
log.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
|
|
|
|
+ noCarWayBill.setFailReason(respR.getMsg());
|
|
|
|
+ noCarWayBill.setBillwayStatus(-2);
|
|
|
|
+ insertOrUpdateBillStart(noCarWayBill);
|
|
return respR;
|
|
return respR;
|
|
}
|
|
}
|
|
WaybillStartRequest waybillStartRequest = buildWaybillStartRequest(noCarWayBill);
|
|
WaybillStartRequest waybillStartRequest = buildWaybillStartRequest(noCarWayBill);
|
|
RespR<WaybillStartResponse> responseRespR = noCarInterface.waybillStart(waybillStartRequest);
|
|
RespR<WaybillStartResponse> responseRespR = noCarInterface.waybillStart(waybillStartRequest);
|
|
if(responseRespR.getCode() == 1){
|
|
if(responseRespR.getCode() == 1){
|
|
log.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
|
|
log.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
|
|
|
|
+ noCarWayBill.setFailReason(respR.getMsg());
|
|
|
|
+ noCarWayBill.setBillwayStatus(-2);
|
|
|
|
+ insertOrUpdateBillStart(noCarWayBill);
|
|
return new RespR(false,responseRespR.getMsg());
|
|
return new RespR(false,responseRespR.getMsg());
|
|
}else{
|
|
}else{
|
|
- noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
|
|
|
|
- noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
|
- noCarWayBill.setHisFlag(0);
|
|
|
|
noCarWayBill.setBillwayStatus(1);
|
|
noCarWayBill.setBillwayStatus(1);
|
|
- insertOrUpdateBill(noCarWayBill,noCarWayBillDb);
|
|
|
|
|
|
+ insertOrUpdateBillStart(noCarWayBill);
|
|
}
|
|
}
|
|
return new RespR(responseRespR.getData());
|
|
return new RespR(responseRespR.getData());
|
|
}
|
|
}
|
|
//插入或者更新运单
|
|
//插入或者更新运单
|
|
- public void insertOrUpdateBill(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBillDb){
|
|
|
|
-
|
|
|
|
- if(noCarWaybillMapper.selectByBillNumforLock(noCarWayBill.getBillNum()) == null){
|
|
|
|
|
|
+ public void insertOrUpdateBillStart(NoCarWayBill noCarWayBill){
|
|
|
|
+ noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
|
|
|
|
+ noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
|
+ NoCarWayBill curr = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
|
|
+ if(curr == null){
|
|
noCarWaybillMapper.insert(noCarWayBill);
|
|
noCarWaybillMapper.insert(noCarWayBill);
|
|
}else{
|
|
}else{
|
|
|
|
+ if(curr.getBillwayStatus()<1)
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill);
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -284,37 +302,58 @@ public class NoCarServiceImpl implements NoCarService{
|
|
return waybillStartRequest;
|
|
return waybillStartRequest;
|
|
}
|
|
}
|
|
public RespR checkCarWayBillAndSetInfo(NoCarWayBill noCarWayBill){
|
|
public RespR checkCarWayBillAndSetInfo(NoCarWayBill noCarWayBill){
|
|
- Customer customer = customerMapper.selectByCustomerName(noCarWayBill.getCustomerName());
|
|
|
|
- if(customer==null || customer.getAccstatus() ==1){
|
|
|
|
- return new RespR(false,"客户不存在或者已经停用");
|
|
|
|
- }
|
|
|
|
- CustomerRec customerRecParm = new CustomerRec();
|
|
|
|
- customerRecParm.setCompanyName(noCarWayBill.getCompanyName());
|
|
|
|
- customerRecParm.setCustomerName(noCarWayBill.getCustomerName());
|
|
|
|
- CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecParm);
|
|
|
|
- if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
|
|
- return new RespR(false,"客户未备案企业或运单编号与查询主体不符");
|
|
|
|
|
|
+ try {
|
|
|
|
+ Customer customer = customerMapper.selectByCustomerName(noCarWayBill.getCustomerName());
|
|
|
|
+ if(customer==null || customer.getAccstatus() ==1){
|
|
|
|
+ return new RespR(false,"客户不存在或者已经停用");
|
|
|
|
+ }
|
|
|
|
+ CustomerRec customerRecParm = new CustomerRec();
|
|
|
|
+ customerRecParm.setCompanyName(noCarWayBill.getCompanyName());
|
|
|
|
+ customerRecParm.setCustomerName(noCarWayBill.getCustomerName());
|
|
|
|
+ CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecParm);
|
|
|
|
+ if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
|
|
+ return new RespR(false,"客户未备案企业或运单编号与查询主体不符");
|
|
|
|
+ }
|
|
|
|
+ noCarWayBill.setCompanyNum(customerRec.getCompanyNum());
|
|
|
|
+ noCarWayBill.setCompanyAdress(customerRec.getCompanyAdress());
|
|
|
|
+ noCarWayBill.setCompanyTel(customerRec.getCompanyPhone());
|
|
|
|
+ noCarWayBill.setCompanyBank(customerRec.getCompanyOpenbank());
|
|
|
|
+ noCarWayBill.setCompanyBankAcc(customerRec.getCompanyOpenbankAcc());
|
|
|
|
+ }catch (Exception e){
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ log.info("运单企业信息设置错误{}",noCarWayBill);
|
|
|
|
+ return new RespR(false,"运单企业信息设置错误"+e.getMessage());
|
|
}
|
|
}
|
|
- noCarWayBill.setCompanyNum(customerRec.getCompanyNum());
|
|
|
|
- noCarWayBill.setCompanyAdress(customerRec.getCompanyAdress());
|
|
|
|
- noCarWayBill.setCompanyTel(customerRec.getCompanyPhone());
|
|
|
|
- noCarWayBill.setCompanyBank(customerRec.getCompanyOpenbank());
|
|
|
|
- noCarWayBill.setCompanyBankAcc(customerRec.getCompanyOpenbankAcc());
|
|
|
|
|
|
+
|
|
return new RespR();
|
|
return new RespR();
|
|
}
|
|
}
|
|
@Override
|
|
@Override
|
|
- public RespR noCarWaybillEnd(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
|
|
|
|
|
|
+ public RespR noCarWaybillEnd(NoCarWayBill noCarWayBill) {
|
|
log.info("运单结束开始:NoCarServiceImpl.noCarWaybillEnd{}",noCarWayBill);
|
|
log.info("运单结束开始:NoCarServiceImpl.noCarWaybillEnd{}",noCarWayBill);
|
|
- if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=1 || noCarWayBill1.getHisFlag() ==1 ){
|
|
|
|
- log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
|
|
|
|
- noCarWayBill.setFailReason((noCarWayBill1 == null?"":noCarWayBill1.getFailReason())+";当前运单状态无法结束,请检查当前指令状态");
|
|
|
|
- noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
|
|
- return new RespR(false,"当前运单状态无法结束,请检查当前指令状态");
|
|
|
|
|
|
+ NoCarWayBill noCarWayBillDb = null;
|
|
|
|
+ try {
|
|
|
|
+ noCarWayBillDb = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
|
|
+ }catch (Exception e){
|
|
|
|
+ return new RespR(false,"有重复运单,请联系管理员删除");
|
|
}
|
|
}
|
|
- noCarWayBill1.setDestAddr(noCarWayBill.getDestAddr());
|
|
|
|
- noCarWayBill1.setPredictEndTime(noCarWayBill.getPredictEndTime());
|
|
|
|
- noCarWayBill1.setBatchNumEnd(noCarWayBill.getBatchNumEnd());
|
|
|
|
- noCarWayBill1.setInterType(noCarWayBill.getInterType());
|
|
|
|
|
|
+ if(noCarWayBillDb == null){
|
|
|
|
+ try{
|
|
|
|
+ noCarWayBillDb = (NoCarWayBill)noCarWayBill.clone();
|
|
|
|
+ }catch (Exception e){
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ return new RespR(false,"系统异常,请重试");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ if(noCarWayBillDb.getBillwayStatus() >1 ){
|
|
|
|
+ return new RespR(false,"运单已经结束或者是历史已结束运单,请联系管理员确认");
|
|
|
|
+ }
|
|
|
|
+ noCarWayBillDb.setPreEndTime(noCarWayBillDb.getPredictEndTime());
|
|
|
|
+ noCarWayBillDb.setDestAddrPre(noCarWayBillDb.getDestAddr());
|
|
|
|
+ noCarWayBillDb.setDestAddr(noCarWayBill.getDestAddr());
|
|
|
|
+ noCarWayBillDb.setPredictEndTime(noCarWayBill.getPredictEndTime());
|
|
|
|
+ noCarWayBillDb.setBatchNumEnd(noCarWayBill.getBatchNumEnd());
|
|
|
|
+ noCarWayBillDb.setInterType(noCarWayBill.getInterType());
|
|
/*if((DateUtil.getDistanceHours(noCarWayBill1.getStartTime(),DateUtil.StringToDate(noCarWayBill1.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
|
|
/*if((DateUtil.getDistanceHours(noCarWayBill1.getStartTime(),DateUtil.StringToDate(noCarWayBill1.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
|
|
//noCarWayBill1.setBillwayStatus(4);
|
|
//noCarWayBill1.setBillwayStatus(4);
|
|
noCarWayBill1.setFailReason("失败,承运时长超96小时");
|
|
noCarWayBill1.setFailReason("失败,承运时长超96小时");
|
|
@@ -326,38 +365,60 @@ public class NoCarServiceImpl implements NoCarService{
|
|
WaybillEndRequest waybillEndRequest = new WaybillEndRequest();
|
|
WaybillEndRequest waybillEndRequest = new WaybillEndRequest();
|
|
String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();
|
|
String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();
|
|
waybillEndRequest.setCompanyNum(companyNum);
|
|
waybillEndRequest.setCompanyNum(companyNum);
|
|
- waybillEndRequest.setNum(noCarWayBill1.getBillNum());
|
|
|
|
- waybillEndRequest.setRealDestAddr(noCarWayBill1.getDestAddr());
|
|
|
|
- waybillEndRequest.setEndTime(DateUtil.dateFormate(noCarWayBill1.getPredictEndTime()));
|
|
|
|
|
|
+ waybillEndRequest.setNum(noCarWayBillDb.getBillNum());
|
|
|
|
+ waybillEndRequest.setRealDestAddr(noCarWayBillDb.getDestAddr());
|
|
|
|
+ waybillEndRequest.setEndTime(DateUtil.dateFormate(noCarWayBillDb.getPredictEndTime()));
|
|
RespR<WaybillEndResponse> waybillEndResponseRespR = noCarInterface.waybillEnd(waybillEndRequest);
|
|
RespR<WaybillEndResponse> waybillEndResponseRespR = noCarInterface.waybillEnd(waybillEndRequest);
|
|
if(waybillEndResponseRespR.getCode() == 1){
|
|
if(waybillEndResponseRespR.getCode() == 1){
|
|
log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,waybillEndResponseRespR.getMsg());
|
|
log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,waybillEndResponseRespR.getMsg());
|
|
- noCarWayBill1.setBillwayStatus(-3);
|
|
|
|
- noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
|
|
|
|
- noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
|
|
|
|
+ noCarWayBillDb.setBillwayStatus(-3);
|
|
|
|
+ noCarWayBillDb.setFailReason(waybillEndResponseRespR.getMsg());
|
|
|
|
+ insertOrUpdateBillEnd(noCarWayBillDb);
|
|
return new RespR(false,waybillEndResponseRespR.getMsg());
|
|
return new RespR(false,waybillEndResponseRespR.getMsg());
|
|
}else if("4".equals(waybillEndResponseRespR.getData().getInfo())){
|
|
}else if("4".equals(waybillEndResponseRespR.getData().getInfo())){
|
|
log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时");
|
|
log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时");
|
|
- noCarWayBill1.setBillwayStatus(4);
|
|
|
|
- noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
|
|
|
|
- noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
|
|
|
|
+ noCarWayBillDb.setBillwayStatus(4);
|
|
|
|
+ noCarWayBillDb.setFailReason(waybillEndResponseRespR.getMsg());
|
|
|
|
+ insertOrUpdateBillEnd(noCarWayBillDb);
|
|
return new RespR(false,"运单已经超时");
|
|
return new RespR(false,"运单已经超时");
|
|
}
|
|
}
|
|
- noCarWayBill1.setInterfaceEndTime(DateUtil.getCurrentDateStr());
|
|
|
|
- noCarWayBill1.setBillwayStatus(2);
|
|
|
|
- noCarWayBill1.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
|
- noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
|
|
|
|
+ noCarWayBillDb.setInterfaceEndTime(DateUtil.getCurrentDateStr());
|
|
|
|
+ noCarWayBillDb.setBillwayStatus(2);
|
|
|
|
+ noCarWayBillDb.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
|
+ insertOrUpdateBillEnd(noCarWayBillDb);
|
|
return new RespR(waybillEndResponseRespR.getData());
|
|
return new RespR(waybillEndResponseRespR.getData());
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ //插入或者更新运单
|
|
|
|
+ public void insertOrUpdateBillEnd(NoCarWayBill noCarWayBill){
|
|
|
|
+ noCarWayBill.setInterfaceEndTime(DateUtil.getCurrentDateStr());
|
|
|
|
+ noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
|
+ NoCarWayBill curr = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
|
|
+ if(curr == null){
|
|
|
|
+ noCarWaybillMapper.insert(noCarWayBill);
|
|
|
|
+ }else{
|
|
|
|
+ if(curr.getBillwayStatus()>1){
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ noCarWaybillMapper.updateByBillNum(noCarWayBill);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
@Override
|
|
@Override
|
|
- public RespR noCarHisWaybillStart(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
|
|
|
|
|
|
+ public RespR noCarHisWaybillStart(NoCarWayBill noCarWayBill) {
|
|
log.info("历史运单开始上传:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"开始");
|
|
log.info("历史运单开始上传:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"开始");
|
|
- if(noCarWayBill1!=null && noCarWayBill1.getBillwayStatus() ==1){
|
|
|
|
- return new RespR(false,"运单号重复");
|
|
|
|
|
|
+ NoCarWayBill noCarWayBillDb = null;
|
|
|
|
+ try {
|
|
|
|
+ noCarWayBillDb = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
|
|
+ }catch (Exception e){
|
|
|
|
+ return new RespR(false,"有重复运单,请联系管理员删除");
|
|
|
|
+ }
|
|
|
|
+ if(noCarWayBillDb!=null && noCarWayBillDb.getBillwayStatus()>0){
|
|
|
|
+ return new RespR(false,"开始指令已经上传成功,请勿重复上传");
|
|
}
|
|
}
|
|
if(DateUtil.getDistanceDays(noCarWayBill.getStartTime(),new Date())>-20){
|
|
if(DateUtil.getDistanceDays(noCarWayBill.getStartTime(),new Date())>-20){
|
|
log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"必须是二十天前的运单");
|
|
log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"必须是二十天前的运单");
|
|
|
|
+ noCarWayBill.setBillwayStatus(-2);
|
|
|
|
+ noCarWayBill.setFailReason("失败,运单未满20天时效");
|
|
|
|
+ insertOrUpdateBillStart(noCarWayBill);
|
|
return new RespR(false,"失败,运单未满20天时效");
|
|
return new RespR(false,"失败,运单未满20天时效");
|
|
}
|
|
}
|
|
/* if((DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
|
|
/* if((DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
|
|
@@ -368,6 +429,9 @@ public class NoCarServiceImpl implements NoCarService{
|
|
RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
|
|
RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
|
|
if(respR.getCode() == 1){
|
|
if(respR.getCode() == 1){
|
|
log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
|
|
log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
|
|
|
|
+ noCarWayBill.setBillwayStatus(-2);
|
|
|
|
+ noCarWayBill.setFailReason(respR.getMsg());
|
|
|
|
+ insertOrUpdateBillStart(noCarWayBill);
|
|
return respR;
|
|
return respR;
|
|
}
|
|
}
|
|
WaybillHistoryStartRequest waybillHistoryStartRequest = BuildNoCarHisWaybill(noCarWayBill);
|
|
WaybillHistoryStartRequest waybillHistoryStartRequest = BuildNoCarHisWaybill(noCarWayBill);
|
|
@@ -375,13 +439,15 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
if(responseRespR.getCode() == 1){
|
|
if(responseRespR.getCode() == 1){
|
|
log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
|
|
log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
|
|
|
|
+ noCarWayBill.setBillwayStatus(-2);
|
|
|
|
+ noCarWayBill.setFailReason(responseRespR.getMsg());
|
|
|
|
+ insertOrUpdateBillStart(noCarWayBill);
|
|
return new RespR(false,responseRespR.getMsg());
|
|
return new RespR(false,responseRespR.getMsg());
|
|
}else{
|
|
}else{
|
|
noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
|
|
noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
|
|
noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
- noCarWayBill.setHisFlag(1);
|
|
|
|
noCarWayBill.setBillwayStatus(1);
|
|
noCarWayBill.setBillwayStatus(1);
|
|
- insertOrUpdateBill(noCarWayBill,noCarWayBill1);
|
|
|
|
|
|
+ insertOrUpdateBillStart(noCarWayBill);
|
|
}
|
|
}
|
|
return new RespR(responseRespR.getData());
|
|
return new RespR(responseRespR.getData());
|
|
}
|
|
}
|
|
@@ -408,17 +474,22 @@ public class NoCarServiceImpl implements NoCarService{
|
|
return waybillStartRequest;
|
|
return waybillStartRequest;
|
|
}
|
|
}
|
|
@Override
|
|
@Override
|
|
- public RespR noCarHisWaybillEnd(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
|
|
|
|
|
|
+ public RespR noCarHisWaybillEnd(NoCarWayBill noCarWayBill) {
|
|
|
|
+ NoCarWayBill noCarWayBillDb = null;
|
|
|
|
+ try {
|
|
|
|
+ noCarWayBillDb = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
|
|
+ }catch (Exception e){
|
|
|
|
+ return new RespR(false,"有重复运单,请联系管理员删除");
|
|
|
|
+ }
|
|
log.info("历史运单结束上传:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"开始");
|
|
log.info("历史运单结束上传:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"开始");
|
|
- if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=1 || noCarWayBill.getHisFlag() ==0 || noCarWayBill1.getBillwayStatus() == -3 ){
|
|
|
|
- log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
|
|
|
|
- noCarWayBill.setFailReason((noCarWayBill1 == null?"":noCarWayBill1.getFailReason())+"当前运单状态无法结束,请检查当前指令状态");
|
|
|
|
- noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
|
|
- return new RespR(false,"当前运单状态无法结束,请检查当前指令状态");
|
|
|
|
|
|
+ if(noCarWayBillDb!=null && noCarWayBillDb.getBillwayStatus()>1){
|
|
|
|
+ return new RespR(false,"结束运单已经上传,无需再次上传");
|
|
}
|
|
}
|
|
- noCarWayBill1.setDestAddr(noCarWayBill.getDestAddr());
|
|
|
|
- noCarWayBill1.setPredictEndTime(noCarWayBill.getPredictEndTime());
|
|
|
|
- noCarWayBill1.setInterType(noCarWayBill.getInterType());
|
|
|
|
|
|
+ noCarWayBillDb.setPreEndTime(noCarWayBillDb.getPredictEndTime());
|
|
|
|
+ noCarWayBillDb.setDestAddrPre(noCarWayBillDb.getDestAddr());
|
|
|
|
+ noCarWayBillDb.setDestAddr(noCarWayBill.getDestAddr());
|
|
|
|
+ noCarWayBillDb.setPredictEndTime(noCarWayBill.getPredictEndTime());
|
|
|
|
+ noCarWayBillDb.setInterType(noCarWayBill.getInterType());
|
|
/*if((DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
|
|
/*if((DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
|
|
log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
noCarWayBill.setFailReason("失败,承运时长超96小时");
|
|
noCarWayBill.setFailReason("失败,承运时长超96小时");
|
|
@@ -428,27 +499,25 @@ public class NoCarServiceImpl implements NoCarService{
|
|
WaybillHistoryEndRequest waybillEndRequest = new WaybillHistoryEndRequest();
|
|
WaybillHistoryEndRequest waybillEndRequest = new WaybillHistoryEndRequest();
|
|
String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();
|
|
String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();
|
|
waybillEndRequest.setCompanyNum(companyNum);
|
|
waybillEndRequest.setCompanyNum(companyNum);
|
|
- waybillEndRequest.setNum(noCarWayBill1.getBillNum());
|
|
|
|
- waybillEndRequest.setRealDestAddr(noCarWayBill1.getDestAddr());
|
|
|
|
- waybillEndRequest.setEndTime(DateUtil.dateFormate(noCarWayBill1.getPredictEndTime()));
|
|
|
|
|
|
+ waybillEndRequest.setNum(noCarWayBillDb.getBillNum());
|
|
|
|
+ waybillEndRequest.setRealDestAddr(noCarWayBillDb.getDestAddr());
|
|
|
|
+ waybillEndRequest.setEndTime(DateUtil.dateFormate(noCarWayBillDb.getPredictEndTime()));
|
|
RespR<WaybillHistoryEndResponse> waybillEndResponseRespR = noCarInterface.waybillHistoryEnd(waybillEndRequest);
|
|
RespR<WaybillHistoryEndResponse> waybillEndResponseRespR = noCarInterface.waybillHistoryEnd(waybillEndRequest);
|
|
if(waybillEndResponseRespR.getCode() == 1){
|
|
if(waybillEndResponseRespR.getCode() == 1){
|
|
- noCarWayBill1.setBillwayStatus(-3);
|
|
|
|
- noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
|
|
|
|
- noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
|
|
- log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,waybillEndResponseRespR.getMsg());
|
|
|
|
|
|
+ noCarWayBillDb.setBillwayStatus(-3);
|
|
|
|
+ noCarWayBillDb.setFailReason(waybillEndResponseRespR.getMsg());
|
|
|
|
+ insertOrUpdateBillEnd(noCarWayBillDb);
|
|
|
|
+ log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBillDb,waybillEndResponseRespR.getMsg());
|
|
|
|
|
|
return new RespR(false,waybillEndResponseRespR.getMsg());
|
|
return new RespR(false,waybillEndResponseRespR.getMsg());
|
|
}else if("4".equals(waybillEndResponseRespR.getData().getInfo())){
|
|
}else if("4".equals(waybillEndResponseRespR.getData().getInfo())){
|
|
noCarWayBill.setBillwayStatus(4);
|
|
noCarWayBill.setBillwayStatus(4);
|
|
- noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
|
|
- log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,"运单已经超时,请拆分");
|
|
|
|
|
|
+ insertOrUpdateBillEnd(noCarWayBillDb);
|
|
|
|
+ log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBillDb,"运单已经超时,请拆分");
|
|
return new RespR(false,"运单已经超时");
|
|
return new RespR(false,"运单已经超时");
|
|
}
|
|
}
|
|
- noCarWayBill1.setInterfaceEndTime(DateUtil.getCurrentDateStr());
|
|
|
|
- noCarWayBill1.setBillwayStatus(2);
|
|
|
|
- noCarWayBill1.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
|
- noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
|
|
|
|
+ noCarWayBillDb.setBillwayStatus(2);
|
|
|
|
+ insertOrUpdateBillEnd(noCarWayBillDb);
|
|
return new RespR(waybillEndResponseRespR.getData());
|
|
return new RespR(waybillEndResponseRespR.getData());
|
|
}
|
|
}
|
|
public WaybillNumFindInvoiceResponse buildInterFaceVoiceData(NoCarWayBill noCarWayBill,List<BillInvoice> billInvoices){
|
|
public WaybillNumFindInvoiceResponse buildInterFaceVoiceData(NoCarWayBill noCarWayBill,List<BillInvoice> billInvoices){
|