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