|
@@ -1,6 +1,5 @@
|
|
package com.jkcredit.invoice.service.lowerService.impl;
|
|
package com.jkcredit.invoice.service.lowerService.impl;
|
|
|
|
|
|
-import cn.com.taiji.sdk.model.comm.protocol.tts.card.server.CardBindQueryListToBResponse;
|
|
|
|
import cn.com.taiji.sdk.model.comm.protocol.tts.vehicle.VehicleQueryRequest;
|
|
import cn.com.taiji.sdk.model.comm.protocol.tts.vehicle.VehicleQueryRequest;
|
|
import cn.com.taiji.sdk.model.comm.protocol.tts.vehicle.VehicleQueryResponse;
|
|
import cn.com.taiji.sdk.model.comm.protocol.tts.vehicle.VehicleQueryResponse;
|
|
import cn.com.taiji.sdk.model.comm.protocol.tts.vehicle.VehicleRegisterRequest;
|
|
import cn.com.taiji.sdk.model.comm.protocol.tts.vehicle.VehicleRegisterRequest;
|
|
@@ -27,7 +26,7 @@ import com.jkcredit.invoice.service.manager.ParamService;
|
|
import com.jkcredit.invoice.service.nocar.NoCarRecService;
|
|
import com.jkcredit.invoice.service.nocar.NoCarRecService;
|
|
import com.jkcredit.invoice.service.upService.NoCarInterface;
|
|
import com.jkcredit.invoice.service.upService.NoCarInterface;
|
|
import com.jkcredit.invoice.util.*;
|
|
import com.jkcredit.invoice.util.*;
|
|
-import org.slf4j.Logger;
|
|
|
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.beans.BeanUtils;
|
|
import org.springframework.beans.BeanUtils;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Repository;
|
|
import org.springframework.stereotype.Repository;
|
|
@@ -38,8 +37,8 @@ import java.util.*;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
@Repository("noCarService")
|
|
@Repository("noCarService")
|
|
|
|
+@Slf4j
|
|
public class NoCarServiceImpl implements NoCarService{
|
|
public class NoCarServiceImpl implements NoCarService{
|
|
- Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -72,7 +71,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public RespR customerCarRec(List<CustomerCarRec> customerCarRecs) {
|
|
public RespR customerCarRec(List<CustomerCarRec> customerCarRecs) {
|
|
- MIX_LOG.info("车辆备案开始NoCarServiceImpl.customerCarRec{}",customerCarRecs);
|
|
|
|
|
|
+ log.info("车辆备案开始NoCarServiceImpl.customerCarRec{}",customerCarRecs);
|
|
if(customerCarRecs== null || customerCarRecs.size()<=0){
|
|
if(customerCarRecs== null || customerCarRecs.size()<=0){
|
|
return new RespR(false,"无备案车辆");
|
|
return new RespR(false,"无备案车辆");
|
|
}
|
|
}
|
|
@@ -81,7 +80,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
Customer customer = customerMapper.selectByCustomerName(customerCarRec2.getCustomerName());
|
|
Customer customer = customerMapper.selectByCustomerName(customerCarRec2.getCustomerName());
|
|
if(customer == null || customer.getAccstatus()!=0){
|
|
if(customer == null || customer.getAccstatus()!=0){
|
|
res.append("#客户:"+customerCarRec2.getCustomerName()+"不存在或状态异常");
|
|
res.append("#客户:"+customerCarRec2.getCustomerName()+"不存在或状态异常");
|
|
- MIX_LOG.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
|
|
|
|
+ log.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
return new RespR(false,res.toString());
|
|
return new RespR(false,res.toString());
|
|
}
|
|
}
|
|
CustomerRec customerRecP = new CustomerRec();
|
|
CustomerRec customerRecP = new CustomerRec();
|
|
@@ -90,7 +89,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecP);
|
|
CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecP);
|
|
if(customerRec == null){
|
|
if(customerRec == null){
|
|
res.append("#客户:"+customerCarRec2.getCustomerName()+"企业:"+customerCarRec2.getCompanyName()+"备案信息不存在");
|
|
res.append("#客户:"+customerCarRec2.getCustomerName()+"企业:"+customerCarRec2.getCompanyName()+"备案信息不存在");
|
|
- MIX_LOG.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
|
|
|
|
+ log.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
return new RespR(false,res.toString());
|
|
return new RespR(false,res.toString());
|
|
}
|
|
}
|
|
return customerCarRecForNoCar(customerCarRecs,res,customerRec);
|
|
return customerCarRecForNoCar(customerCarRecs,res,customerRec);
|
|
@@ -153,10 +152,10 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
}
|
|
}
|
|
if(StringUtils.isEmpty(res.toString())){
|
|
if(StringUtils.isEmpty(res.toString())){
|
|
- MIX_LOG.info("车辆备案成功");
|
|
|
|
|
|
+ log.info("车辆备案成功");
|
|
return new RespR(respRResult);
|
|
return new RespR(respRResult);
|
|
}else {
|
|
}else {
|
|
- MIX_LOG.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
|
|
|
|
+ log.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
return new RespR(false,res.toString());
|
|
return new RespR(false,res.toString());
|
|
}
|
|
}
|
|
|
|
|
|
@@ -170,7 +169,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
@Override
|
|
@Override
|
|
public RespR customerCarRecQueryUpper(CustomerCarRec customerCarRec) {
|
|
public RespR customerCarRecQueryUpper(CustomerCarRec customerCarRec) {
|
|
StringBuffer res = new StringBuffer();
|
|
StringBuffer res = new StringBuffer();
|
|
- MIX_LOG.info("车辆备案查询NoCarServiceImpl.customerCarRecQueryUpper{}",customerCarRec);
|
|
|
|
|
|
+ log.info("车辆备案查询NoCarServiceImpl.customerCarRecQueryUpper{}",customerCarRec);
|
|
Customer customer = customerMapper.selectByCustomerName(customerCarRec.getCustomerName());
|
|
Customer customer = customerMapper.selectByCustomerName(customerCarRec.getCustomerName());
|
|
if(customer == null || customer.getAccstatus()!=0){
|
|
if(customer == null || customer.getAccstatus()!=0){
|
|
res.append("#客户:"+customer.getCustomerName()+"不存在或状态异常");
|
|
res.append("#客户:"+customer.getCustomerName()+"不存在或状态异常");
|
|
@@ -194,7 +193,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
RespR<VehicleQueryResponse> respR = noCarInterface.vehicleQuery(vehicleQueryRequest);
|
|
RespR<VehicleQueryResponse> respR = noCarInterface.vehicleQuery(vehicleQueryRequest);
|
|
if(respR.getCode() == 1){
|
|
if(respR.getCode() == 1){
|
|
- MIX_LOG.info("车辆备案查询失败NoCarServiceImpl.customerCarRecQueryUpper{},msg{}",customerCarRec,respR.getMsg());
|
|
|
|
|
|
+ log.info("车辆备案查询失败NoCarServiceImpl.customerCarRecQueryUpper{},msg{}",customerCarRec,respR.getMsg());
|
|
}else if(8 != customerCarRec.getInterType()){//此处表示仅适用接口查询,不走业务逻辑
|
|
}else if(8 != customerCarRec.getInterType()){//此处表示仅适用接口查询,不走业务逻辑
|
|
customerCarRec.setRecStatus(1);
|
|
customerCarRec.setRecStatus(1);
|
|
updateCustomerCarRec(customerCarRec);
|
|
updateCustomerCarRec(customerCarRec);
|
|
@@ -221,24 +220,24 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public RespR noCarWaybillStart(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBillDb) {
|
|
public RespR noCarWaybillStart(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBillDb) {
|
|
- MIX_LOG.info("运单上传开始:NoCarServiceImpl.noCarWaybillStart{}",noCarWayBill);
|
|
|
|
|
|
+ log.info("运单上传开始:NoCarServiceImpl.noCarWaybillStart{}",noCarWayBill);
|
|
//如果运单时间和当前时间差了三天,直接返回
|
|
//如果运单时间和当前时间差了三天,直接返回
|
|
if(DateUtil.getDistanceHours(noCarWayBill.getStartTime(),new Date())<-72){
|
|
if(DateUtil.getDistanceHours(noCarWayBill.getStartTime(),new Date())<-72){
|
|
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)){
|
|
- MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
|
|
|
|
+ log.info("运单结束失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
return new RespR(false,"失败,承运时长超96小时");
|
|
return new RespR(false,"失败,承运时长超96小时");
|
|
}
|
|
}
|
|
RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
|
|
RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
|
|
if(respR.getCode() == 1){
|
|
if(respR.getCode() == 1){
|
|
- MIX_LOG.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
|
|
|
|
|
|
+ log.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
|
|
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){
|
|
- MIX_LOG.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
|
|
|
|
|
|
+ log.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
|
|
return new RespR(false,responseRespR.getMsg());
|
|
return new RespR(false,responseRespR.getMsg());
|
|
}else{
|
|
}else{
|
|
noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
|
|
noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
|
|
@@ -304,9 +303,9 @@ public class NoCarServiceImpl implements NoCarService{
|
|
}
|
|
}
|
|
@Override
|
|
@Override
|
|
public RespR noCarWaybillEnd(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
|
|
public RespR noCarWaybillEnd(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
|
|
- MIX_LOG.info("运单结束开始:NoCarServiceImpl.noCarWaybillEnd{}",noCarWayBill);
|
|
|
|
|
|
+ log.info("运单结束开始:NoCarServiceImpl.noCarWaybillEnd{}",noCarWayBill);
|
|
if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=1 || noCarWayBill1.getHisFlag() ==1 ){
|
|
if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=1 || noCarWayBill1.getHisFlag() ==1 ){
|
|
- MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
|
|
|
|
|
|
+ log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
|
|
noCarWayBill.setFailReason("当前运单状态无法结束,请检查当前指令状态");
|
|
noCarWayBill.setFailReason("当前运单状态无法结束,请检查当前指令状态");
|
|
noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
return new RespR(false,"当前运单状态无法结束,请检查当前指令状态");
|
|
return new RespR(false,"当前运单状态无法结束,请检查当前指令状态");
|
|
@@ -319,7 +318,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
//noCarWayBill1.setBillwayStatus(4);
|
|
//noCarWayBill1.setBillwayStatus(4);
|
|
noCarWayBill1.setFailReason("失败,承运时长超96小时");
|
|
noCarWayBill1.setFailReason("失败,承运时长超96小时");
|
|
noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
- MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
|
|
|
|
+ log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
return new RespR(false,"失败,承运时长超96小时");
|
|
return new RespR(false,"失败,承运时长超96小时");
|
|
}
|
|
}
|
|
|
|
|
|
@@ -331,13 +330,13 @@ public class NoCarServiceImpl implements NoCarService{
|
|
waybillEndRequest.setEndTime(DateUtil.dateFormate(noCarWayBill1.getPredictEndTime()));
|
|
waybillEndRequest.setEndTime(DateUtil.dateFormate(noCarWayBill1.getPredictEndTime()));
|
|
RespR<WaybillEndResponse> waybillEndResponseRespR = noCarInterface.waybillEnd(waybillEndRequest);
|
|
RespR<WaybillEndResponse> waybillEndResponseRespR = noCarInterface.waybillEnd(waybillEndRequest);
|
|
if(waybillEndResponseRespR.getCode() == 1){
|
|
if(waybillEndResponseRespR.getCode() == 1){
|
|
- MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,waybillEndResponseRespR.getMsg());
|
|
|
|
|
|
+ log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,waybillEndResponseRespR.getMsg());
|
|
noCarWayBill1.setBillwayStatus(-3);
|
|
noCarWayBill1.setBillwayStatus(-3);
|
|
noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
|
|
noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
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())){
|
|
- MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时");
|
|
|
|
|
|
+ log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时");
|
|
noCarWayBill1.setBillwayStatus(4);
|
|
noCarWayBill1.setBillwayStatus(4);
|
|
noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
|
|
noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
@@ -352,29 +351,29 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public RespR noCarHisWaybillStart(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
|
|
public RespR noCarHisWaybillStart(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
|
|
- MIX_LOG.info("历史运单开始上传:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"开始");
|
|
|
|
|
|
+ log.info("历史运单开始上传:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"开始");
|
|
if(noCarWayBill1!=null && noCarWayBill1.getBillwayStatus() ==1){
|
|
if(noCarWayBill1!=null && noCarWayBill1.getBillwayStatus() ==1){
|
|
return new RespR(false,"运单号重复");
|
|
return new RespR(false,"运单号重复");
|
|
}
|
|
}
|
|
if(DateUtil.getDistanceDays(noCarWayBill.getStartTime(),new Date())>-20){
|
|
if(DateUtil.getDistanceDays(noCarWayBill.getStartTime(),new Date())>-20){
|
|
- MIX_LOG.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"必须是二十天前的运单");
|
|
|
|
|
|
+ log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",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)){
|
|
- MIX_LOG.info("历史运单开始上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
|
|
|
|
+ log.info("历史运单开始上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
return new RespR(false,"失败,承运时长超96小时");
|
|
return new RespR(false,"失败,承运时长超96小时");
|
|
}
|
|
}
|
|
|
|
|
|
RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
|
|
RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
|
|
if(respR.getCode() == 1){
|
|
if(respR.getCode() == 1){
|
|
- MIX_LOG.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
|
|
|
|
|
|
+ log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
|
|
return respR;
|
|
return respR;
|
|
}
|
|
}
|
|
WaybillHistoryStartRequest waybillHistoryStartRequest = BuildNoCarHisWaybill(noCarWayBill);
|
|
WaybillHistoryStartRequest waybillHistoryStartRequest = BuildNoCarHisWaybill(noCarWayBill);
|
|
RespR<WaybillHistoryStartResponse> responseRespR = noCarInterface.waybillHistoryStart(waybillHistoryStartRequest);
|
|
RespR<WaybillHistoryStartResponse> responseRespR = noCarInterface.waybillHistoryStart(waybillHistoryStartRequest);
|
|
|
|
|
|
if(responseRespR.getCode() == 1){
|
|
if(responseRespR.getCode() == 1){
|
|
- MIX_LOG.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
|
|
|
|
|
|
+ log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
|
|
return new RespR(false,responseRespR.getMsg());
|
|
return new RespR(false,responseRespR.getMsg());
|
|
}else{
|
|
}else{
|
|
noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
|
|
noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
|
|
@@ -409,9 +408,9 @@ public class NoCarServiceImpl implements NoCarService{
|
|
}
|
|
}
|
|
@Override
|
|
@Override
|
|
public RespR noCarHisWaybillEnd(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
|
|
public RespR noCarHisWaybillEnd(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
|
|
- MIX_LOG.info("历史运单结束上传:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"开始");
|
|
|
|
|
|
+ log.info("历史运单结束上传:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"开始");
|
|
if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=1 || noCarWayBill.getHisFlag() ==0 || noCarWayBill1.getBillwayStatus() == -3 ){
|
|
if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=1 || noCarWayBill.getHisFlag() ==0 || noCarWayBill1.getBillwayStatus() == -3 ){
|
|
- MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
|
|
|
|
|
|
+ log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
|
|
noCarWayBill.setFailReason("当前运单状态无法结束,请检查当前指令状态");
|
|
noCarWayBill.setFailReason("当前运单状态无法结束,请检查当前指令状态");
|
|
noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
return new RespR(false,"当前运单状态无法结束,请检查当前指令状态");
|
|
return new RespR(false,"当前运单状态无法结束,请检查当前指令状态");
|
|
@@ -420,7 +419,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
noCarWayBill1.setPredictEndTime(noCarWayBill.getPredictEndTime());
|
|
noCarWayBill1.setPredictEndTime(noCarWayBill.getPredictEndTime());
|
|
noCarWayBill1.setInterType(noCarWayBill.getInterType());
|
|
noCarWayBill1.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)){
|
|
- MIX_LOG.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
|
|
|
|
+ log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
noCarWayBill.setFailReason("失败,承运时长超96小时");
|
|
noCarWayBill.setFailReason("失败,承运时长超96小时");
|
|
noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
return new RespR(false,"失败,承运时长超96小时");
|
|
return new RespR(false,"失败,承运时长超96小时");
|
|
@@ -436,13 +435,13 @@ public class NoCarServiceImpl implements NoCarService{
|
|
noCarWayBill1.setBillwayStatus(-3);
|
|
noCarWayBill1.setBillwayStatus(-3);
|
|
noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
|
|
noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
- MIX_LOG.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,waybillEndResponseRespR.getMsg());
|
|
|
|
|
|
+ log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,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);
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
- MIX_LOG.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,"运单已经超时,请拆分");
|
|
|
|
|
|
+ log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,"运单已经超时,请拆分");
|
|
return new RespR(false,"运单已经超时");
|
|
return new RespR(false,"运单已经超时");
|
|
}
|
|
}
|
|
noCarWayBill1.setInterfaceEndTime(DateUtil.getCurrentDateStr());
|
|
noCarWayBill1.setInterfaceEndTime(DateUtil.getCurrentDateStr());
|
|
@@ -474,7 +473,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
@Override
|
|
@Override
|
|
@Transactional
|
|
@Transactional
|
|
public RespR getInvoiceByWayBillNumReal(NoCarWayBill noCarWayBill, boolean isInterface) {
|
|
public RespR getInvoiceByWayBillNumReal(NoCarWayBill noCarWayBill, boolean isInterface) {
|
|
- MIX_LOG.info("取票啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{}",noCarWayBill,isInterface);
|
|
|
|
|
|
+ log.info("取票啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{}",noCarWayBill,isInterface);
|
|
if(noCarWayBill.getBillwayStatus() == 3){
|
|
if(noCarWayBill.getBillwayStatus() == 3){
|
|
|
|
|
|
if(isInterface){
|
|
if(isInterface){
|
|
@@ -496,12 +495,12 @@ public class NoCarServiceImpl implements NoCarService{
|
|
}
|
|
}
|
|
int status = noCarWayBill.getBillwayStatus();
|
|
int status = noCarWayBill.getBillwayStatus();
|
|
if(status !=2){
|
|
if(status !=2){
|
|
- MIX_LOG.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,"运单转态,无法开票");
|
|
|
|
|
|
+ log.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,"运单转态,无法开票");
|
|
return new RespR(false,"运单状态无法开票");
|
|
return new RespR(false,"运单状态无法开票");
|
|
}
|
|
}
|
|
RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
|
|
RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
|
|
if(respR.getCode() == 1){
|
|
if(respR.getCode() == 1){
|
|
- MIX_LOG.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,respR.getMsg());
|
|
|
|
|
|
+ log.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,respR.getMsg());
|
|
return respR;
|
|
return respR;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -512,7 +511,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
waybillNumFindInvoiceRequest.setWaybillNum(noCarWayBill.getBillNum());
|
|
waybillNumFindInvoiceRequest.setWaybillNum(noCarWayBill.getBillNum());
|
|
RespR<WaybillNumFindInvoiceResponse> responseRespR = noCarInterface.waybillNumFindInvoice(waybillNumFindInvoiceRequest);
|
|
RespR<WaybillNumFindInvoiceResponse> responseRespR = noCarInterface.waybillNumFindInvoice(waybillNumFindInvoiceRequest);
|
|
if(responseRespR.getCode() == 1){
|
|
if(responseRespR.getCode() == 1){
|
|
- MIX_LOG.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,responseRespR.getMsg());
|
|
|
|
|
|
+ log.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,responseRespR.getMsg());
|
|
return new RespR(false,responseRespR.getMsg());
|
|
return new RespR(false,responseRespR.getMsg());
|
|
}else{
|
|
}else{
|
|
int tempStatus = responseRespR.getData().getWaybillStatus().intValue();
|
|
int tempStatus = responseRespR.getData().getWaybillStatus().intValue();
|
|
@@ -564,7 +563,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
calculateInforMapper.insert(calculateInfor);
|
|
calculateInforMapper.insert(calculateInfor);
|
|
customer.setAccountBalance(MathUtil.sub(customer.getAccountBalance(),calculateInfor.getFee()));
|
|
customer.setAccountBalance(MathUtil.sub(customer.getAccountBalance(),calculateInfor.getFee()));
|
|
}catch (Exception e){
|
|
}catch (Exception e){
|
|
- MIX_LOG.error("重复数据来啦"+calculateInfor.getTradeId());
|
|
|
|
|
|
+ log.error("重复数据来啦"+calculateInfor.getTradeId());
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -592,7 +591,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public RespR hCInvoiceQuery(HCInvoiceQueryVo hcInvoiceQueryVo) {
|
|
public RespR hCInvoiceQuery(HCInvoiceQueryVo hcInvoiceQueryVo) {
|
|
- MIX_LOG.info("取红冲票啦:NoCarServiceImpl.hCInvoiceQuery{}",hcInvoiceQueryVo);
|
|
|
|
|
|
+ log.info("取红冲票啦:NoCarServiceImpl.hCInvoiceQuery{}",hcInvoiceQueryVo);
|
|
WaybillInvoiceRedQueryRequest redQueryRequest = new WaybillInvoiceRedQueryRequest();
|
|
WaybillInvoiceRedQueryRequest redQueryRequest = new WaybillInvoiceRedQueryRequest();
|
|
String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();
|
|
String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();
|
|
redQueryRequest.setCompanyNum(companyNum);
|
|
redQueryRequest.setCompanyNum(companyNum);
|
|
@@ -600,7 +599,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
RespR<WaybillInvoiceRedQueryResponse> respR = noCarInterface.waybillInvoiceRedQuery(redQueryRequest);
|
|
RespR<WaybillInvoiceRedQueryResponse> respR = noCarInterface.waybillInvoiceRedQuery(redQueryRequest);
|
|
if(respR.getCode() == 1){
|
|
if(respR.getCode() == 1){
|
|
- MIX_LOG.info("取红冲票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",hcInvoiceQueryVo,respR.getMsg());
|
|
|
|
|
|
+ log.info("取红冲票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",hcInvoiceQueryVo,respR.getMsg());
|
|
return new RespR(false,respR.getMsg());
|
|
return new RespR(false,respR.getMsg());
|
|
}
|
|
}
|
|
if(StringUtils.isEmpty(hcInvoiceQueryVo.getCompanyName())){
|
|
if(StringUtils.isEmpty(hcInvoiceQueryVo.getCompanyName())){
|
|
@@ -612,7 +611,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
}
|
|
}
|
|
@Override
|
|
@Override
|
|
public RespR monthAccQuery(MonthAccountQueryVo monthAccountQueryVo) {
|
|
public RespR monthAccQuery(MonthAccountQueryVo monthAccountQueryVo) {
|
|
- MIX_LOG.info("取月票啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"开始");
|
|
|
|
|
|
+ log.info("取月票啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"开始");
|
|
CustomerRec customerRecParm = new CustomerRec();
|
|
CustomerRec customerRecParm = new CustomerRec();
|
|
customerRecParm.setCompanyName(monthAccountQueryVo.getCompanyName());
|
|
customerRecParm.setCompanyName(monthAccountQueryVo.getCompanyName());
|
|
customerRecParm.setCustomerName(monthAccountQueryVo.getCustomeName());
|
|
customerRecParm.setCustomerName(monthAccountQueryVo.getCustomeName());
|
|
@@ -622,7 +621,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
customerRec = customerRecs.get(0);
|
|
customerRec = customerRecs.get(0);
|
|
}
|
|
}
|
|
if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
- MIX_LOG.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"企业未备案成功,查询失败");
|
|
|
|
|
|
+ log.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"企业未备案成功,查询失败");
|
|
return new RespR(false,"企业未备案成功,查询失败");
|
|
return new RespR(false,"企业未备案成功,查询失败");
|
|
}
|
|
}
|
|
WaybillCountQueryRequest waybillCountQueryRequest = new WaybillCountQueryRequest();
|
|
WaybillCountQueryRequest waybillCountQueryRequest = new WaybillCountQueryRequest();
|
|
@@ -634,7 +633,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
waybillCountQueryRequest.setPageNo(monthAccountQueryVo.getPageNo());
|
|
waybillCountQueryRequest.setPageNo(monthAccountQueryVo.getPageNo());
|
|
waybillCountQueryRequest.setPageSize(1000);
|
|
waybillCountQueryRequest.setPageSize(1000);
|
|
RespR<WaybillCountQueryResponse> waybillCountQueryResponseRespR = noCarInterface.waybillCountQuery(waybillCountQueryRequest);
|
|
RespR<WaybillCountQueryResponse> waybillCountQueryResponseRespR = noCarInterface.waybillCountQuery(waybillCountQueryRequest);
|
|
- MIX_LOG.info("取月票结束:NoCarServiceImpl.hCInvoiceQuery{},msg{}",waybillCountQueryResponseRespR,waybillCountQueryResponseRespR.getMsg());
|
|
|
|
|
|
+ log.info("取月票结束:NoCarServiceImpl.hCInvoiceQuery{},msg{}",waybillCountQueryResponseRespR,waybillCountQueryResponseRespR.getMsg());
|
|
return waybillCountQueryResponseRespR;
|
|
return waybillCountQueryResponseRespR;
|
|
}
|
|
}
|
|
}
|
|
}
|