From 00ca6da34d5270cf9f99131622180b330c3d5632 Mon Sep 17 00:00:00 2001 From: yaooo <272523191@qq.com> Date: Fri, 8 Sep 2023 12:02:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=BC=82=E5=B8=B8=E9=98=9F?= =?UTF-8?q?=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crmeb/jobs/SendGoodsCodeJob.php | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/crmeb/jobs/SendGoodsCodeJob.php b/crmeb/jobs/SendGoodsCodeJob.php index 269b37a8..ede9c640 100644 --- a/crmeb/jobs/SendGoodsCodeJob.php +++ b/crmeb/jobs/SendGoodsCodeJob.php @@ -28,15 +28,18 @@ class SendGoodsCodeJob implements JobInterface { $this->event = $data; Log::info("sendGoodsCodeJob ============= handle监听order_id " . $this->event['order_id']); - if ($this->event['activity_type'] == 0) { - //发起物流信息返回快递员手机 - $logisticsPhone = $this->sendLogistics($this->event['order_id'], $this->event['order_sn']); - //生成用户的收货码 - $this->generateLogisticsCode($this->event['uid'], $this->event['order_id'], $this->event['order_sn'], $logisticsPhone); - //记录订单收货地址记录 - $this->recordOrderAddr($this->event); + try { + if ($this->event['activity_type'] == 0) { + //发起物流信息返回快递员手机 + $logisticsPhone = $this->sendLogistics($this->event['order_id'], $this->event['order_sn']); + //生成用户的收货码 + $this->generateLogisticsCode($this->event['uid'], $this->event['order_id'], $this->event['order_sn'], $logisticsPhone); + //记录订单收货地址记录 + $this->recordOrderAddr($this->event); + } + } catch (\Exception $e) { + Log::info('sendGoodsCodeJob 异常:' . $e->getMessage()); } - $job->delete(); }