From 854917a0c9444236752458967fdef542e2db04d6 Mon Sep 17 00:00:00 2001 From: "bo.yang" Date: Wed, 2 Jun 2021 12:56:12 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E8=B0=83=E6=95=B4=E5=BF=AB=E9=80=92?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E6=8E=A8=E9=80=81=EF=BC=8C=E4=B8=8D=E7=AE=A1?= =?UTF-8?q?=E6=98=AF=E5=90=A6=E4=B8=BA=E7=AD=BE=E6=94=B6=EF=BC=8C=E9=83=BD?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E5=88=B0=E6=95=B0=E6=8D=AE=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ruoyi/bps/service/impl/ExpSubsPushApiServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/box-bps/src/main/java/com/ruoyi/bps/service/impl/ExpSubsPushApiServiceImpl.java b/box-bps/src/main/java/com/ruoyi/bps/service/impl/ExpSubsPushApiServiceImpl.java index 01bddbce9..d54176c12 100644 --- a/box-bps/src/main/java/com/ruoyi/bps/service/impl/ExpSubsPushApiServiceImpl.java +++ b/box-bps/src/main/java/com/ruoyi/bps/service/impl/ExpSubsPushApiServiceImpl.java @@ -162,7 +162,7 @@ public class ExpSubsPushApiServiceImpl implements IExpSubsPushApiService { } //快递单当前状态 (0在途,1揽收,2疑难,3签收,4退签,5派件,6退回,7转单,10待清关,11清关中,12已清关,13清关异常,14收件人拒签) String state = subscribePushResult.getState(); - if(state.equals("3")){ + //if(state.equals("3")){ //处理签收逻辑 //将快递流转状态存入数据库 ExpSubsPushResp expSubsPushResp=new ExpSubsPushResp(); @@ -181,7 +181,7 @@ public class ExpSubsPushApiServiceImpl implements IExpSubsPushApiService { //如果数据库中没有快递单号+快递公司编码,则更插入新记录 expSubsPushRespService.insertExpSubsPushResp(ToExpSubsPushResp(subscribePushParamResp)); } - } + // } return subscribeResp; }