Kaynağa Gözat

20211201后端更新代码_2

mashengyi 3 yıl önce
ebeveyn
işleme
92313aefef

+ 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();