Kaynağa Gözat

下单通知

林琦海 5 yıl önce
ebeveyn
işleme
0f00a125af
1 değiştirilmiş dosya ile 14 ekleme ve 1 silme
  1. 14 1
      biz-ghs/ws/services/WsService.php

+ 14 - 1
biz-ghs/ws/services/WsService.php

@@ -22,5 +22,18 @@ class WsService
 
     //零售端采购时,提示供货商(下所有有开启通知的员工),你有新订单
     //商城客户下单时,提示零售花店(下所有有开启通知的员工) 你有新的订单
-    //todo
+    public static function newOrderNotice($shopAdminId)
+    {
+        $url = 'https://img.theflorist.cn/audio/new_order0.mp3';
+        $data = [
+            'type'=>'new_order',
+            'url'=>$url,
+        ];
+        try{
+            Gateway::sendToUid($shopAdminId, json_encode($data));
+        }catch (\Exception $exception){
+            Yii::warning("ws arrivalNotice error ". $exception->getMessage());
+        }
+        return true;
+    }
 }