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