|
@@ -165,7 +165,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
Group group = this.createGroup(user);
|
|
|
//把 Group 转成 Map 用于 jfianl框架的 添加使用
|
|
|
Map<String, Object> attrs = groupToMap(group);
|
|
|
- attrs.put("service_account_type",ServiceAccountOfflineType.NO.getKey());
|
|
|
+ attrs.put("service_account_type", ServiceAccountOfflineTypeEnum.NO.getKey());
|
|
|
//jfianl框架的 保存
|
|
|
ChatGroup.dao._setAttrs(attrs).save();
|
|
|
groups.add(group);
|
|
@@ -247,7 +247,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
//把 Group 转成 Map 用于 jfianl框架的 添加使用
|
|
|
Map<String, Object> attrs = groupToMap(group);
|
|
|
//客服是否是离线状态 1: 是 0: 否
|
|
|
- attrs.put("service_account_type",ServiceAccountOfflineType.NO.getKey());
|
|
|
+ attrs.put("service_account_type", ServiceAccountOfflineTypeEnum.NO.getKey());
|
|
|
//jfianl框架的 保存
|
|
|
ChatGroup.dao._setAttrs(attrs).save();
|
|
|
groups.add(group);
|
|
@@ -269,7 +269,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
//把 Group 转成 Map 用于 jfianl框架的 添加使用
|
|
|
Map<String, Object> attrs = groupToMap(group);
|
|
|
//客服是否是离线状态 1: 是 0: 否
|
|
|
- attrs.put("service_account_type",ServiceAccountOfflineType.YES.getKey());
|
|
|
+ attrs.put("service_account_type", ServiceAccountOfflineTypeEnum.YES.getKey());
|
|
|
//jfianl框架的 保存
|
|
|
ChatGroup.dao._setAttrs(attrs).save();
|
|
|
groups.add(group);
|
|
@@ -294,22 +294,22 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
private void createConversation(Group group,User user) {
|
|
|
ServiceAccountRoleDepartmentMiddle dao = ServiceAccountRoleDepartmentMiddle.dao;
|
|
|
Map<String, Object> attrs = new HashMap<>();
|
|
|
- attrs.put("id", group.getGroup_id());
|
|
|
+ attrs.put("id", Long.valueOf(group.getGroup_id()));
|
|
|
//会话状态 0:游客会话 1:客户会话 群组类型 0:游客-客服 类型 1:客户-客服 类型
|
|
|
attrs.put("state", group.getGroupType());
|
|
|
if(VisitTypeEnum.CUSTOMER.getKey().equals(user.getVisitType())){
|
|
|
- attrs.put("user_id", user.getExtras().getString("customerId"));
|
|
|
+ attrs.put("user_id", Long.valueOf(user.getExtras().getString("customerId")));
|
|
|
}
|
|
|
if(VisitTypeEnum.VISITOR.getKey().equals(user.getVisitType())){
|
|
|
- attrs.put("user_id", user.getExtras().getString("visitorId"));
|
|
|
+ attrs.put("user_id", Long.valueOf(user.getExtras().getString("visitorId")));
|
|
|
}
|
|
|
attrs.put("user_nickname", user.getNick());
|
|
|
attrs.put("user_phone", user.getExtras().getString("phone"));
|
|
|
- attrs.put("company_id", group.getCompanyId());
|
|
|
- attrs.put("department_id", group.getDepartmentId());
|
|
|
+ attrs.put("company_id", Long.valueOf(group.getCompanyId()));
|
|
|
+ attrs.put("department_id", Long.valueOf(group.getDepartmentId()));
|
|
|
ServiceAccountRoleDepartmentMiddle pojo
|
|
|
= dao.findById(group.getServiceAccountRoleDepartmentId());
|
|
|
- attrs.put("service_account_id", pojo.get("service_account_id"));
|
|
|
+ attrs.put("service_account_id", Long.valueOf(pojo.get("service_account_id")));
|
|
|
dao._setAttrs(attrs).save();
|
|
|
}
|
|
|
|
|
@@ -556,7 +556,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
if( !CollectionUtils.isEmpty(chatGroups) ){
|
|
|
for (ChatGroup chatGroup : chatGroups) {
|
|
|
ChatGroup.dao.findById(chatGroup.getStr("group_id"))
|
|
|
- .set("service_account_type", ServiceAccountOfflineType.NO.getKey())
|
|
|
+ .set("service_account_type", ServiceAccountOfflineTypeEnum.NO.getKey())
|
|
|
.update();
|
|
|
}
|
|
|
}
|