|
@@ -26,10 +26,8 @@ import com.jkcredit.invoice.service.lowerService.vo.MonthAccountQueryVo;
|
|
|
import com.jkcredit.invoice.service.manager.ParamService;
|
|
|
import com.jkcredit.invoice.service.nocar.NoCarRecService;
|
|
|
import com.jkcredit.invoice.service.upService.NoCarInterface;
|
|
|
-import com.jkcredit.invoice.util.DateUtil;
|
|
|
-import com.jkcredit.invoice.util.MathUtil;
|
|
|
-import com.jkcredit.invoice.util.RespR;
|
|
|
-import lombok.extern.slf4j.Slf4j;
|
|
|
+import com.jkcredit.invoice.util.*;
|
|
|
+import org.slf4j.Logger;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Repository;
|
|
@@ -39,9 +37,12 @@ import org.springframework.util.StringUtils;
|
|
|
import java.util.*;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
-@Slf4j
|
|
|
@Repository("noCarService")
|
|
|
public class NoCarServiceImpl implements NoCarService{
|
|
|
+ Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
@Autowired
|
|
|
NoCarInterface noCarInterface;
|
|
|
|
|
@@ -71,7 +72,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
@Override
|
|
|
public RespR customerCarRec(List<CustomerCarRec> customerCarRecs) {
|
|
|
- log.info("车辆备案开始NoCarServiceImpl.customerCarRec{}",customerCarRecs);
|
|
|
+ MIX_LOG.info("车辆备案开始NoCarServiceImpl.customerCarRec{}",customerCarRecs);
|
|
|
if(customerCarRecs== null || customerCarRecs.size()<=0){
|
|
|
return new RespR(false,"无备案车辆");
|
|
|
}
|
|
@@ -80,7 +81,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
Customer customer = customerMapper.selectByCustomerName(customerCarRec2.getCustomerName());
|
|
|
if(customer == null || customer.getAccstatus()!=0){
|
|
|
res.append("#客户:"+customerCarRec2.getCustomerName()+"不存在或状态异常");
|
|
|
- log.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
|
+ MIX_LOG.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
|
return new RespR(false,res.toString());
|
|
|
}
|
|
|
CustomerRec customerRecP = new CustomerRec();
|
|
@@ -89,7 +90,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecP);
|
|
|
if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
|
res.append("#客户:"+customerCarRec2.getCustomerName()+"企业:"+customerCarRec2.getCompanyName()+"备案信息不存在");
|
|
|
- log.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
|
+ MIX_LOG.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
|
return new RespR(false,res.toString());
|
|
|
}
|
|
|
return customerCarRecForNoCar(customerCarRecs,res,customerRec);
|
|
@@ -146,10 +147,10 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
}
|
|
|
if(StringUtils.isEmpty(res.toString())){
|
|
|
- log.info("车辆备案成功");
|
|
|
+ MIX_LOG.info("车辆备案成功");
|
|
|
return new RespR("车辆备案成功");
|
|
|
}else {
|
|
|
- log.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
|
+ MIX_LOG.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
|
|
|
return new RespR(false,res.toString());
|
|
|
}
|
|
|
|
|
@@ -163,7 +164,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
@Override
|
|
|
public RespR customerCarRecQueryUpper(CustomerCarRec customerCarRec) {
|
|
|
StringBuffer res = new StringBuffer();
|
|
|
- log.info("车辆备案查询NoCarServiceImpl.customerCarRecQueryUpper{}",customerCarRec);
|
|
|
+ MIX_LOG.info("车辆备案查询NoCarServiceImpl.customerCarRecQueryUpper{}",customerCarRec);
|
|
|
Customer customer = customerMapper.selectByCustomerName(customerCarRec.getCustomerName());
|
|
|
if(customer == null || customer.getAccstatus()!=0){
|
|
|
res.append("#客户:"+customer.getCustomerName()+"不存在或状态异常");
|
|
@@ -187,7 +188,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
RespR<VehicleQueryResponse> respR = noCarInterface.vehicleQuery(vehicleQueryRequest);
|
|
|
if(respR.getCode() == 1){
|
|
|
- log.info("车辆备案查询失败NoCarServiceImpl.customerCarRecQueryUpper{},msg{}",customerCarRec,respR.getMsg());
|
|
|
+ MIX_LOG.info("车辆备案查询失败NoCarServiceImpl.customerCarRecQueryUpper{},msg{}",customerCarRec,respR.getMsg());
|
|
|
}else{
|
|
|
customerCarRec.setRecStatus(1);
|
|
|
updateCustomerCarRec(customerCarRec);
|
|
@@ -214,24 +215,24 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
@Override
|
|
|
public RespR noCarWaybillStart(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBillDb) {
|
|
|
- log.info("运单上传开始:NoCarServiceImpl.noCarWaybillStart{}",noCarWayBill);
|
|
|
+ MIX_LOG.info("运单上传开始:NoCarServiceImpl.noCarWaybillStart{}",noCarWayBill);
|
|
|
//如果运单时间和当前时间差了三天,直接返回
|
|
|
if(DateUtil.getDistanceHours(noCarWayBill.getStartTime(),new Date())<-72){
|
|
|
return new RespR(false,"失败,运单开始时间超72小时");
|
|
|
}
|
|
|
if((DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
|
|
|
- log.info("运单结束失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
|
+ MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
|
return new RespR(false,"失败,承运时长超96小时");
|
|
|
}
|
|
|
RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
|
|
|
if(respR.getCode() == 1){
|
|
|
- log.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
|
|
|
+ MIX_LOG.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
|
|
|
return respR;
|
|
|
}
|
|
|
WaybillStartRequest waybillStartRequest = buildWaybillStartRequest(noCarWayBill);
|
|
|
RespR<WaybillStartResponse> responseRespR = noCarInterface.waybillStart(waybillStartRequest);
|
|
|
if(responseRespR.getCode() == 1){
|
|
|
- log.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
|
|
|
+ MIX_LOG.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
|
|
|
return new RespR(false,responseRespR.getMsg());
|
|
|
}else{
|
|
|
noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
|
|
@@ -297,9 +298,9 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
}
|
|
|
@Override
|
|
|
public RespR noCarWaybillEnd(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
|
|
|
- log.info("运单结束开始:NoCarServiceImpl.noCarWaybillEnd{}",noCarWayBill);
|
|
|
+ MIX_LOG.info("运单结束开始:NoCarServiceImpl.noCarWaybillEnd{}",noCarWayBill);
|
|
|
if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=1 || noCarWayBill1.getHisFlag() ==1 ){
|
|
|
- log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
|
|
|
+ MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
|
|
|
noCarWayBill.setFailReason("当前运单状态无法结束,请检查当前指令状态");
|
|
|
noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
|
return new RespR(false,"当前运单状态无法结束,请检查当前指令状态");
|
|
@@ -312,7 +313,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
//noCarWayBill1.setBillwayStatus(4);
|
|
|
noCarWayBill1.setFailReason("失败,承运时长超96小时");
|
|
|
noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
|
- log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
|
+ MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
|
return new RespR(false,"失败,承运时长超96小时");
|
|
|
}
|
|
|
|
|
@@ -324,13 +325,13 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
waybillEndRequest.setEndTime(DateUtil.dateFormate(noCarWayBill1.getPredictEndTime()));
|
|
|
RespR<WaybillEndResponse> waybillEndResponseRespR = noCarInterface.waybillEnd(waybillEndRequest);
|
|
|
if(waybillEndResponseRespR.getCode() == 1){
|
|
|
- log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,waybillEndResponseRespR.getMsg());
|
|
|
+ MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,waybillEndResponseRespR.getMsg());
|
|
|
noCarWayBill1.setBillwayStatus(-3);
|
|
|
noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
|
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
|
return new RespR(false,waybillEndResponseRespR.getMsg());
|
|
|
}else if("4".equals(waybillEndResponseRespR.getData().getInfo())){
|
|
|
- log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时");
|
|
|
+ MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时");
|
|
|
noCarWayBill1.setBillwayStatus(4);
|
|
|
noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
|
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
@@ -345,29 +346,29 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
@Override
|
|
|
public RespR noCarHisWaybillStart(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
|
|
|
- log.info("历史运单开始上传:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"开始");
|
|
|
+ MIX_LOG.info("历史运单开始上传:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"开始");
|
|
|
if(noCarWayBill1!=null && noCarWayBill1.getBillwayStatus() ==1){
|
|
|
return new RespR(false,"运单号重复");
|
|
|
}
|
|
|
if(DateUtil.getDistanceDays(noCarWayBill.getStartTime(),new Date())>-20){
|
|
|
- log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"必须是二十天前的运单");
|
|
|
+ MIX_LOG.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"必须是二十天前的运单");
|
|
|
return new RespR(false,"失败,运单未满20天时效");
|
|
|
}
|
|
|
if((DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
|
|
|
- log.info("历史运单开始上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
|
+ MIX_LOG.info("历史运单开始上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
|
return new RespR(false,"失败,承运时长超96小时");
|
|
|
}
|
|
|
|
|
|
RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
|
|
|
if(respR.getCode() == 1){
|
|
|
- log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
|
|
|
+ MIX_LOG.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
|
|
|
return respR;
|
|
|
}
|
|
|
WaybillHistoryStartRequest waybillHistoryStartRequest = BuildNoCarHisWaybill(noCarWayBill);
|
|
|
RespR<WaybillHistoryStartResponse> responseRespR = noCarInterface.waybillHistoryStart(waybillHistoryStartRequest);
|
|
|
|
|
|
if(responseRespR.getCode() == 1){
|
|
|
- log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
|
|
|
+ MIX_LOG.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
|
|
|
return new RespR(false,responseRespR.getMsg());
|
|
|
}else{
|
|
|
noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
|
|
@@ -402,9 +403,9 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
}
|
|
|
@Override
|
|
|
public RespR noCarHisWaybillEnd(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
|
|
|
- log.info("历史运单结束上传:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"开始");
|
|
|
+ MIX_LOG.info("历史运单结束上传:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"开始");
|
|
|
if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=1 || noCarWayBill.getHisFlag() ==0 || noCarWayBill1.getBillwayStatus() == -3 ){
|
|
|
- log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
|
|
|
+ MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
|
|
|
noCarWayBill.setFailReason("当前运单状态无法结束,请检查当前指令状态");
|
|
|
noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
|
return new RespR(false,"当前运单状态无法结束,请检查当前指令状态");
|
|
@@ -413,7 +414,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
noCarWayBill1.setPredictEndTime(noCarWayBill.getPredictEndTime());
|
|
|
noCarWayBill1.setInterType(noCarWayBill.getInterType());
|
|
|
if((DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
|
|
|
- log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
|
+ MIX_LOG.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
|
|
|
noCarWayBill.setFailReason("失败,承运时长超96小时");
|
|
|
noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
|
|
|
return new RespR(false,"失败,承运时长超96小时");
|
|
@@ -429,13 +430,13 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
noCarWayBill1.setBillwayStatus(-3);
|
|
|
noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
|
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
|
- log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,waybillEndResponseRespR.getMsg());
|
|
|
+ MIX_LOG.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,waybillEndResponseRespR.getMsg());
|
|
|
|
|
|
return new RespR(false,waybillEndResponseRespR.getMsg());
|
|
|
}else if("4".equals(waybillEndResponseRespR.getData().getInfo())){
|
|
|
noCarWayBill.setBillwayStatus(4);
|
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
|
- log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,"运单已经超时,请拆分");
|
|
|
+ MIX_LOG.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,"运单已经超时,请拆分");
|
|
|
return new RespR(false,"运单已经超时");
|
|
|
}
|
|
|
noCarWayBill1.setInterfaceEndTime(DateUtil.getCurrentDateStr());
|
|
@@ -467,7 +468,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
@Override
|
|
|
@Transactional
|
|
|
public RespR getInvoiceByWayBillNumReal(NoCarWayBill noCarWayBill, boolean isInterface) {
|
|
|
- log.info("取票啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{}",noCarWayBill,isInterface);
|
|
|
+ MIX_LOG.info("取票啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{}",noCarWayBill,isInterface);
|
|
|
if(noCarWayBill.getBillwayStatus() == 3){
|
|
|
|
|
|
if(isInterface){
|
|
@@ -489,12 +490,12 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
}
|
|
|
int status = noCarWayBill.getBillwayStatus();
|
|
|
if(status !=2){
|
|
|
- log.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,"运单转态,无法开票");
|
|
|
+ MIX_LOG.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,"运单转态,无法开票");
|
|
|
return new RespR(false,"运单状态无法开票");
|
|
|
}
|
|
|
RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
|
|
|
if(respR.getCode() == 1){
|
|
|
- log.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,respR.getMsg());
|
|
|
+ MIX_LOG.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,respR.getMsg());
|
|
|
return respR;
|
|
|
}
|
|
|
|
|
@@ -505,7 +506,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
waybillNumFindInvoiceRequest.setWaybillNum(noCarWayBill.getBillNum());
|
|
|
RespR<WaybillNumFindInvoiceResponse> responseRespR = noCarInterface.waybillNumFindInvoice(waybillNumFindInvoiceRequest);
|
|
|
if(responseRespR.getCode() == 1){
|
|
|
- log.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,responseRespR.getMsg());
|
|
|
+ MIX_LOG.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,responseRespR.getMsg());
|
|
|
return new RespR(false,responseRespR.getMsg());
|
|
|
}else{
|
|
|
int tempStatus = responseRespR.getData().getWaybillStatus().intValue();
|
|
@@ -558,7 +559,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
calculateInforMapper.insert(calculateInfor);
|
|
|
customer.setAccountBalance(MathUtil.sub(customer.getAccountBalance(),calculateInfor.getFee()));
|
|
|
}catch (Exception e){
|
|
|
- log.error("重复数据来啦"+calculateInfor.getTradeId());
|
|
|
+ MIX_LOG.error("重复数据来啦"+calculateInfor.getTradeId());
|
|
|
}
|
|
|
|
|
|
|
|
@@ -586,7 +587,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
@Override
|
|
|
public RespR hCInvoiceQuery(HCInvoiceQueryVo hcInvoiceQueryVo) {
|
|
|
- log.info("取红冲票啦:NoCarServiceImpl.hCInvoiceQuery{}",hcInvoiceQueryVo);
|
|
|
+ MIX_LOG.info("取红冲票啦:NoCarServiceImpl.hCInvoiceQuery{}",hcInvoiceQueryVo);
|
|
|
WaybillInvoiceRedQueryRequest redQueryRequest = new WaybillInvoiceRedQueryRequest();
|
|
|
String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();
|
|
|
redQueryRequest.setCompanyNum(companyNum);
|
|
@@ -594,7 +595,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
RespR<WaybillInvoiceRedQueryResponse> respR = noCarInterface.waybillInvoiceRedQuery(redQueryRequest);
|
|
|
if(respR.getCode() == 1){
|
|
|
- log.info("取红冲票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",hcInvoiceQueryVo,respR.getMsg());
|
|
|
+ MIX_LOG.info("取红冲票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",hcInvoiceQueryVo,respR.getMsg());
|
|
|
return new RespR(false,respR.getMsg());
|
|
|
}
|
|
|
if(StringUtils.isEmpty(hcInvoiceQueryVo.getCompanyName())){
|
|
@@ -606,10 +607,10 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
}
|
|
|
@Override
|
|
|
public RespR monthAccQuery(MonthAccountQueryVo monthAccountQueryVo) {
|
|
|
- log.info("取月票啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"开始");
|
|
|
+ MIX_LOG.info("取月票啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"开始");
|
|
|
Customer customer = customerMapper.selectByCustomerName(monthAccountQueryVo.getCustomeName());
|
|
|
if(customer==null || customer.getAccstatus() ==1){
|
|
|
- log.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"客户不存在或者已经停用");
|
|
|
+ MIX_LOG.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"客户不存在或者已经停用");
|
|
|
return new RespR(false,"客户不存在或者已经停用");
|
|
|
}
|
|
|
CustomerRec customerRecParm = new CustomerRec();
|
|
@@ -617,7 +618,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
customerRecParm.setCustomerName(monthAccountQueryVo.getCustomeName());
|
|
|
CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecParm);
|
|
|
if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
|
- log.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"客户未备案企业或运单编号与查询主体不符");
|
|
|
+ MIX_LOG.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"客户未备案企业或运单编号与查询主体不符");
|
|
|
return new RespR(false,"客户未备案企业或运单编号与查询主体不符");
|
|
|
}
|
|
|
WaybillCountQueryRequest waybillCountQueryRequest = new WaybillCountQueryRequest();
|
|
@@ -628,7 +629,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
waybillCountQueryRequest.setWaybillSource(monthAccountQueryVo.getWaybillSource());
|
|
|
waybillCountQueryRequest.setPageNo(monthAccountQueryVo.getPageNo());
|
|
|
RespR<WaybillCountQueryResponse> waybillCountQueryResponseRespR = noCarInterface.waybillCountQuery(waybillCountQueryRequest);
|
|
|
- log.info("取月票结束:NoCarServiceImpl.hCInvoiceQuery{},msg{}",waybillCountQueryResponseRespR,waybillCountQueryResponseRespR.getMsg());
|
|
|
+ MIX_LOG.info("取月票结束:NoCarServiceImpl.hCInvoiceQuery{},msg{}",waybillCountQueryResponseRespR,waybillCountQueryResponseRespR.getMsg());
|
|
|
return waybillCountQueryResponseRespR;
|
|
|
}
|
|
|
}
|