|
@@ -613,26 +613,26 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
@Override
|
|
|
public RespR monthAccQuery(MonthAccountQueryVo monthAccountQueryVo) {
|
|
|
MIX_LOG.info("取月票啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"开始");
|
|
|
- Customer customer = customerMapper.selectByCustomerName(monthAccountQueryVo.getCustomeName());
|
|
|
- if(customer==null || customer.getAccstatus() ==1){
|
|
|
- MIX_LOG.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"客户不存在或者已经停用");
|
|
|
- return new RespR(false,"客户不存在或者已经停用");
|
|
|
- }
|
|
|
CustomerRec customerRecParm = new CustomerRec();
|
|
|
- customerRecParm.setCompanyName(monthAccountQueryVo.getComPanyName());
|
|
|
+ customerRecParm.setCompanyName(monthAccountQueryVo.getCompanyName());
|
|
|
customerRecParm.setCustomerName(monthAccountQueryVo.getCustomeName());
|
|
|
- CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecParm);
|
|
|
+ CustomerRec customerRec = null;
|
|
|
+ List<CustomerRec> customerRecs = customerRecMapper.selectByCompanyName(monthAccountQueryVo.getCompanyName());
|
|
|
+ if(customerRecs != null && customerRecs.size()>0){
|
|
|
+ customerRec = customerRecs.get(0);
|
|
|
+ }
|
|
|
if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
|
- MIX_LOG.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"客户未备案企业或运单编号与查询主体不符");
|
|
|
- return new RespR(false,"客户未备案企业或运单编号与查询主体不符");
|
|
|
+ MIX_LOG.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"企业未备案成功,查询失败");
|
|
|
+ return new RespR(false,"企业未备案成功,查询失败");
|
|
|
}
|
|
|
WaybillCountQueryRequest waybillCountQueryRequest = new WaybillCountQueryRequest();
|
|
|
String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();
|
|
|
waybillCountQueryRequest.setCompanyNum(companyNum);
|
|
|
- waybillCountQueryRequest.setTaxCode(monthAccountQueryVo.getTaxCode());
|
|
|
+ waybillCountQueryRequest.setTaxCode(customerRec.getCompanyReferencenum());
|
|
|
waybillCountQueryRequest.setTradeMonth(monthAccountQueryVo.getTradeMonth());
|
|
|
waybillCountQueryRequest.setWaybillSource(monthAccountQueryVo.getWaybillSource());
|
|
|
waybillCountQueryRequest.setPageNo(monthAccountQueryVo.getPageNo());
|
|
|
+ waybillCountQueryRequest.setPageSize(1000);
|
|
|
RespR<WaybillCountQueryResponse> waybillCountQueryResponseRespR = noCarInterface.waybillCountQuery(waybillCountQueryRequest);
|
|
|
MIX_LOG.info("取月票结束:NoCarServiceImpl.hCInvoiceQuery{},msg{}",waybillCountQueryResponseRespR,waybillCountQueryResponseRespR.getMsg());
|
|
|
return waybillCountQueryResponseRespR;
|