|
|
@@ -39,6 +39,7 @@ class NoticeClass extends BaseClass
|
|
|
//提现审核通过通知所有人 ssh 20210115
|
|
|
public static function cashPassNotice($shop, $cash)
|
|
|
{
|
|
|
+ return true;
|
|
|
$ptStyle = $shop->ptStyle;
|
|
|
$amount = $cash->amount;
|
|
|
Yii::$app->params['ptStyle'] = $ptStyle;
|
|
|
@@ -56,12 +57,13 @@ class NoticeClass extends BaseClass
|
|
|
if (empty($clientId)) {
|
|
|
return false;
|
|
|
}
|
|
|
- pushNotice::gtPush($clientId, '提现到账通知', $amount . '元已到账,请查收');
|
|
|
+ //pushNotice::gtPush($clientId, '提现到账通知', $amount . '元已到账,请查收');
|
|
|
}
|
|
|
|
|
|
//新客户通知 ssh 20210115
|
|
|
public static function newCustomNotice($shop, $custom)
|
|
|
{
|
|
|
+ return true;
|
|
|
$ptStyle = $shop['ptStyle'] ?? 1;
|
|
|
$name = $custom['name'] ?? '';
|
|
|
Yii::$app->params['ptStyle'] = $ptStyle;
|
|
|
@@ -79,7 +81,7 @@ class NoticeClass extends BaseClass
|
|
|
if (empty($clientId)) {
|
|
|
continue;
|
|
|
}
|
|
|
- pushNotice::gtPush($clientId, '新客户加入', $name);
|
|
|
+ //pushNotice::gtPush($clientId, '新客户加入', $name);
|
|
|
}
|
|
|
}
|
|
|
|