From e1a17a727b85a5678548ded02489d0ecee5ad3ae Mon Sep 17 00:00:00 2001 From: luofei <604446095@qq.com> Date: Fri, 11 Aug 2023 09:50:55 +0800 Subject: [PATCH] =?UTF-8?q?=E9=85=8D=E9=80=81=E5=91=98=E5=8F=96=E8=B4=A7?= =?UTF-8?q?=E5=90=8E=E9=80=9A=E7=9F=A5=E5=95=86=E8=B6=85=E7=B3=BB=E7=BB=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/logic/LogisticsLogic.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/api/logic/LogisticsLogic.php b/app/api/logic/LogisticsLogic.php index bf45d31f..38412a17 100644 --- a/app/api/logic/LogisticsLogic.php +++ b/app/api/logic/LogisticsLogic.php @@ -210,9 +210,6 @@ class LogisticsLogic extends BaseLogic 'content' => '用户提交订单', 'create_time' => time(), ]); - //调用接口通知商超平台 - $url = 'https://crmeb-test.shop.lihaink.cn/api/goods/take/'.$params['order_id']; - curl_post($url,[],['order_sn'=>$params['order_sn']]); Logistics::commit(); return ['code'=>1, 'msg'=>'操作成功','data'=>$courierInfo]; } catch (\Exception $e) { @@ -262,6 +259,9 @@ class LogisticsLogic extends BaseLogic 'content' => '已提取商品', 'create_time' => time(), ]); + //调用接口通知商超平台 + $url = 'https://crmeb-test.shop.lihaink.cn/api/goods/take/'.$params['order_id']; + curl_post($url,[],['order_sn'=>$params['order_sn']]); Logistics::commit(); return ['code'=>1, 'msg'=>'操作成功']; } catch (\Exception $e) {