|
@@ -140,7 +140,10 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
*/
|
|
|
private List<Group> initVisitorGroups(User user) {
|
|
|
List<Group> groups = disposeVisitorGroupData(user);
|
|
|
- this.createConversation(groups.get(0),user);
|
|
|
+ Boolean noOnlineService = user.getExtras().getBoolean("noOnlineService");
|
|
|
+ if(noOnlineService == null){
|
|
|
+ this.createConversation(groups.get(0),user);
|
|
|
+ }
|
|
|
return groups;
|
|
|
}
|
|
|
|
|
@@ -162,7 +165,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
//value组成 : Map<String ( serviceAccountRoleDepartmentId ), String (当前连接客户人数)>
|
|
|
Map<String, String> serviceAccountContainer = jedisTemplate.hashGetAll(serviceAccountContainerKey);
|
|
|
|
|
|
- // //从当前在线的客服中 获取 连接客户数最少的 客服
|
|
|
+ // 从当前在线的客服中 获取 连接客户数最少的 客服
|
|
|
Map.Entry<String, String> minReceptionNumServiceAccount = this.getServiceAccountMinReceptionNum(serviceAccountContainer);
|
|
|
if( null != minReceptionNumServiceAccount ){
|
|
|
//当前平台下部门下 存在客服
|
|
@@ -346,7 +349,10 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
groups.addAll(this.disposeVisitorGroupData(user));
|
|
|
}
|
|
|
if( user.getExtras().getBoolean("isCreateConversation")){
|
|
|
- this.createConversation(groups.get(0),user);
|
|
|
+ Boolean noOnlineService = user.getExtras().getBoolean("noOnlineService");
|
|
|
+ if(noOnlineService == null){
|
|
|
+ this.createConversation(groups.get(0),user);
|
|
|
+ }
|
|
|
}
|
|
|
return groups;
|
|
|
}
|
|
@@ -618,6 +624,11 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
List<ChatGroup> onlineChatGroups = ChatGroup.dao.find(sql2.toString());
|
|
|
if( !CollectionUtils.isEmpty(onlineChatGroups) ){
|
|
|
chatGroups.addAll(onlineChatGroups);
|
|
|
+ //修改客服离线状态 为 在线
|
|
|
+ for (ChatGroup chatGroup : onlineChatGroups) {
|
|
|
+ chatGroup.set("service_account_type",ServiceAccountOfflineTypeEnum.ON_LINE.getKey())
|
|
|
+ .update();
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
//1.查询 对应平台下 对应部门下 留言群组
|