Просмотр исходного кода

启用 pushNotice::gtPush,信用 pushNotice::push

shizhongqi 4 лет назад
Родитель
Сommit
5ac6a0229a
1 измененных файлов с 4 добавлено и 2 удалено
  1. 4 2
      biz/notice/classes/NoticeClass.php

+ 4 - 2
biz/notice/classes/NoticeClass.php

@@ -33,7 +33,8 @@ class NoticeClass extends BaseClass
             }
             $adminId = $admin['id'] ?? 0;
             //APP通知
-            pushNotice::push($adminId, $clientId, '新订单通知', $customName . '下单' . $actPrice . '元');
+            //pushNotice::push($adminId, $clientId, '新订单通知', $customName . '下单' . $actPrice . '元');
+            pushNotice::gtPush($adminId, $clientId, '新订单通知', $customName . '下单' . $actPrice . '元');
         }
     }
 
@@ -53,7 +54,8 @@ class NoticeClass extends BaseClass
                 continue;
             }
             $adminId = $admin['id'] ?? 0;
-            pushNotice::push($adminId, $clientId, '提现到账通知', $amount . '元已到账,请查收');
+            //pushNotice::push($adminId, $clientId, '提现到账通知', $amount . '元已到账,请查收');
+            pushNotice::gtPush($adminId, $clientId, '提现到账通知', $amount . '元已到账,请查收');
         }
     }