|
@@ -99,8 +99,8 @@ class WeiBanSync implements ShouldQueue
|
|
|
$this->tagsHandle($extUser['id'],$follow['staff_id'],$follow['tags'],$Tags);
|
|
|
// 客服处理
|
|
|
$this->staffHandle($follow,$extUser,$Follow);
|
|
|
- // 获取手机号
|
|
|
- $phone = $follow['phone_number'];
|
|
|
+ // 有手机号才获取手机号
|
|
|
+ if( $follow['phone_number'] ) $phone = $follow['phone_number'];
|
|
|
}
|
|
|
// 如果没有客服,状态流失
|
|
|
if( !$followList ) $extUser['status'] = 4;
|