|
@@ -122,8 +122,13 @@ class RegularlyRemindUserActiveStatus extends Command
|
122
|
122
|
'user_id' => $remindUserArr,
|
123
|
123
|
'responseData' => $responseData
|
124
|
124
|
];
|
125
|
|
- EmailQueue::rPush('通知客服有许可临期失败', json_encode($logData, JSON_UNESCAPED_UNICODE)
|
126
|
|
- , ['song.shen@kuxuan-inc.com'], '通知客服有许可临期失败');
|
|
125
|
+
|
|
126
|
+ # 被通知的客服没有许可
|
|
127
|
+ if($responseData['errcode'] != 81013) {
|
|
128
|
+ EmailQueue::rPush('通知客服有许可临期失败', json_encode($logData, JSON_UNESCAPED_UNICODE)
|
|
129
|
+ , ['song.shen@kuxuan-inc.com'], '通知客服有许可临期失败');
|
|
130
|
+ }
|
|
131
|
+
|
127
|
132
|
Log::logError('通知客服有许可临期失败', $logData, 'RegularlyRemindUserActiveStatus');
|
128
|
133
|
|
129
|
134
|
return false;
|