浏览代码

20211201后端更新代码_2

mashengyi 3 年之前
父节点
当前提交
92313aefef
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      src/main/java/com/jkcredit/invoice/service/lowerService/impl/NoCarServiceImpl.java

+ 4 - 4
src/main/java/com/jkcredit/invoice/service/lowerService/impl/NoCarServiceImpl.java

@@ -287,7 +287,7 @@ public class NoCarServiceImpl implements NoCarService{
         customerRecParm.setCustomerName(noCarWayBill.getCustomerName());
         CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecParm);
         if(customerRec == null || customerRec.getRecStatus()!=1){
-            return new RespR(false,"客户未备案或备案失败");
+            return new RespR(false,"客户未备案企业或运单编号与查询主体不符");
         }
         noCarWayBill.setCompanyNum(customerRec.getCompanyNum());
         noCarWayBill.setCompanyAdress(customerRec.getCompanyAdress());
@@ -608,9 +608,9 @@ public class NoCarServiceImpl implements NoCarService{
         customerRecParm.setCompanyName(monthAccountQueryVo.getComPanyName());
         customerRecParm.setCustomerName(monthAccountQueryVo.getCustomeName());
         CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecParm);
-        if(customerRec == null || customerRec.getRecStatus()==1){
-            log.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"客户未备案或备案失败");
-            return new RespR(false,"客户未备案或备案失败");
+        if(customerRec == null || customerRec.getRecStatus()!=1){
+            log.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"客户未备案企业或运单编号与查询主体不符");
+            return new RespR(false,"客户未备案企业或运单编号与查询主体不符");
         }
         WaybillCountQueryRequest waybillCountQueryRequest = new WaybillCountQueryRequest();
         String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();