From bbe1b984afc142688f2b7637cdc9a4f9c5a64c43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B7=AF=E6=98=8E=E6=85=A7?= <1191093413@qq.com> Date: Tue, 20 Aug 2024 16:18:45 +0800 Subject: [PATCH] =?UTF-8?q?feature:=E6=89=8B=E5=8A=A8=E5=9B=9E=E6=8E=A8?= =?UTF-8?q?=E5=8E=BB=E6=8E=89=E5=9B=9E=E6=8E=A8=E9=85=8D=E7=BD=AE=E6=A0=A1?= =?UTF-8?q?=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/InvoiceDataServiceImpl.java | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/order-management-order/src/main/java/com/dxhy/order/consumer/modules/manager/service/impl/InvoiceDataServiceImpl.java b/order-management-order/src/main/java/com/dxhy/order/consumer/modules/manager/service/impl/InvoiceDataServiceImpl.java index ee0e614..5573f24 100644 --- a/order-management-order/src/main/java/com/dxhy/order/consumer/modules/manager/service/impl/InvoiceDataServiceImpl.java +++ b/order-management-order/src/main/java/com/dxhy/order/consumer/modules/manager/service/impl/InvoiceDataServiceImpl.java @@ -79,18 +79,18 @@ public class InvoiceDataServiceImpl implements InvoiceDataService { if (orderInvoiceInfo == null) { continue; } - //查询当前税号的销方信息是否配置推送地址 - PushInfo queryPushInfo = new PushInfo(); - //推送地址为有效 - queryPushInfo.setStatus("0"); - queryPushInfo.setNsrsbh(orderInvoiceInfo.getXhfNsrsbh()); - //接口类型为发票作废状态推送 - queryPushInfo.setInterfaceType(OrderInfoEnum.INTERFACE_TYPE_INVOICE_PUSH_STATUS_1.getKey()); - List selectListByPushInfo = orderPushInfoMapper.queryPushInfoList(queryPushInfo, shList); - if (ObjectUtil.isEmpty(selectListByPushInfo)) { - set.add(orderInvoiceInfo.getXhfNsrsbh()); - continue; - } +// //查询当前税号的销方信息是否配置推送地址 +// PushInfo queryPushInfo = new PushInfo(); +// //推送地址为有效 +// queryPushInfo.setStatus("0"); +// queryPushInfo.setNsrsbh(orderInvoiceInfo.getXhfNsrsbh()); +// //接口类型为发票作废状态推送 +// queryPushInfo.setInterfaceType(OrderInfoEnum.INTERFACE_TYPE_INVOICE_PUSH_STATUS_1.getKey()); +// List selectListByPushInfo = orderPushInfoMapper.queryPushInfoList(queryPushInfo, shList); +// if (ObjectUtil.isEmpty(selectListByPushInfo)) { +// set.add(orderInvoiceInfo.getXhfNsrsbh()); +// continue; +// } //将需要推送给企业的发票数据放入发票推送队列 log.info("{}invociePush:{}", LOGGER_MSG, JsonUtils.getInstance().toJsonString(orderInvoiceInfo));