diff --git a/app/listener/SendGoodsCode.php b/app/listener/SendGoodsCode.php index afedb671..b4b31c7a 100644 --- a/app/listener/SendGoodsCode.php +++ b/app/listener/SendGoodsCode.php @@ -18,7 +18,9 @@ class SendGoodsCode Log::info("sendGoodsCode ============= handle监听order_id " . $this->event['order_id']); if ($this->event['activity_type'] == 0 || in_array($this->event['source'], [0,2,103])) { //发起物流信息返回快递员手机 - $logisticsPhone = $this->sendLogistics($this->event['order_id'], $this->event['order_sn']); + if($this->event['activity_type'] !=98){ + $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); } diff --git a/crmeb/jobs/SendGoodsCodeJob.php b/crmeb/jobs/SendGoodsCodeJob.php index e8c7a209..380ba129 100644 --- a/crmeb/jobs/SendGoodsCodeJob.php +++ b/crmeb/jobs/SendGoodsCodeJob.php @@ -32,7 +32,9 @@ class SendGoodsCodeJob implements JobInterface try { if ($this->event['activity_type'] == 0 || in_array($this->event['source'], [0,2,103])) { //发起物流信息返回快递员手机 - $logisticsPhone = $this->sendLogistics($this->event['order_id'], $this->event['order_sn']); + if($this->event['activity_type'] !=98){ + $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); }