shish 4 years ago
parent
commit
6f7fdced7d
1 changed files with 1 additions and 9 deletions
  1. 1 9
      biz/notice/classes/NoticeClass.php

+ 1 - 9
biz/notice/classes/NoticeClass.php

@@ -31,11 +31,7 @@ class NoticeClass extends BaseClass
             if (empty($clientId)) {
             if (empty($clientId)) {
                 continue;
                 continue;
             }
             }
-            $adminId = $admin['id'] ?? 0;
-            //APP通知
-            //pushNotice::push($adminId, $clientId, '新订单通知', $customName . '下单' . $actPrice . '元');
-            //pushNotice::gtPush($clientId, '新订单通知', $customName . '下单' . $actPrice . '元');
-            pushNotice::gtPush($clientId, '提现到账通知', '提现200元已经到账');
+            pushNotice::gtPush($clientId, '新订单通知', $customName . '下单' . $actPrice . '元');
         }
         }
     }
     }
 
 
@@ -54,8 +50,6 @@ class NoticeClass extends BaseClass
             if (empty($clientId)) {
             if (empty($clientId)) {
                 continue;
                 continue;
             }
             }
-            $adminId = $admin['id'] ?? 0;
-            //pushNotice::push($adminId, $clientId, '提现到账通知', $amount . '元已到账,请查收');
             pushNotice::gtPush($clientId, '提现到账通知', $amount . '元已到账,请查收');
             pushNotice::gtPush($clientId, '提现到账通知', $amount . '元已到账,请查收');
         }
         }
     }
     }
@@ -80,8 +74,6 @@ class NoticeClass extends BaseClass
             if (empty($clientId)) {
             if (empty($clientId)) {
                 continue;
                 continue;
             }
             }
-            $adminId = $admin['id'] ?? 0;
-            //pushNotice::push($adminId, $clientId, '新客户加入', $name);
             pushNotice::gtPush($clientId, '新客户加入', $name);
             pushNotice::gtPush($clientId, '新客户加入', $name);
         }
         }
     }
     }