|
@@ -633,10 +633,11 @@ public class TeacherServiceImpl extends ServiceImpl<TeacherDao, Teacher> impleme
|
|
|
|
|
|
// 与客服建立好友
|
|
|
if (!Boolean.TRUE.equals(teacher.getCustomerService())) {
|
|
|
- Teacher customerServiceTeacher = getCustomerServiceByFriendLeast();
|
|
|
- if (customerServiceTeacher != null) {
|
|
|
+ List<TeacherWrapper.TeacherFriend> customerServiceFriendNums = this.getBaseMapper().getCustomerServiceFriendNums();
|
|
|
+ if (!customerServiceFriendNums.isEmpty()) {
|
|
|
+ Long teacherId = customerServiceFriendNums.get(0).getTeacherId();
|
|
|
imUserFriendService.registerUserBindCustomerService(teacher.getUserId(),
|
|
|
- Collections.singletonList(customerServiceTeacher.getUserId()), ClientEnum.TEACHER);
|
|
|
+ Collections.singletonList(teacherId), ClientEnum.TEACHER);
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
@@ -646,6 +647,10 @@ public class TeacherServiceImpl extends ServiceImpl<TeacherDao, Teacher> impleme
|
|
|
if (Boolean.TRUE.equals(customerService) && Boolean.FALSE.equals(teacherSubmitReq.getCustomerService())) {
|
|
|
customerServiceSendMsg2User.addAll(transferFriendV2(teacher.getUserId(), true));
|
|
|
clearUserCustomerRelation(teacherSubmitReq.getUserId());
|
|
|
+ this.update(null, new UpdateWrapper<Teacher>().lambda()
|
|
|
+ .set(Teacher::getCustomerId, null)
|
|
|
+ .eq(Teacher::getUserId, teacherSubmitReq.getUserId()));
|
|
|
+ teacher.setCustomerId(null);
|
|
|
}
|
|
|
// 如果机构解绑,更新机构ID为-1
|
|
|
if (Boolean.TRUE.equals(teacherSubmitReq.getBindTenant())) {
|
|
@@ -1508,6 +1513,10 @@ public class TeacherServiceImpl extends ServiceImpl<TeacherDao, Teacher> impleme
|
|
|
if (UserLockFlag.NORMAL.equals(teacher.getLockFlag()) && Boolean.TRUE.equals(customerService)) {
|
|
|
List<TeacherWrapper.CustomerServiceSendMsg2User> customerServiceSendMsg2User = transferFriendV2(teacherId, false);
|
|
|
clearUserCustomerRelation(teacherId);
|
|
|
+ this.update(null, new UpdateWrapper<Teacher>().lambda()
|
|
|
+ .set(Teacher::getCustomerId, null)
|
|
|
+ .eq(Teacher::getUserId, teacherId));
|
|
|
+ teacher.setCustomerId(null);
|
|
|
for (TeacherWrapper.CustomerServiceSendMsg2User serviceSendMsg2User : customerServiceSendMsg2User) {
|
|
|
String customerMessage = sysConfigService.findConfigValue(SysConfigConstant.CUSTOMER_SERVICE_ADD_MSG);
|
|
|
String customerTitle = sysConfigService.findConfigValue(SysConfigConstant.CUSTOMER_SERVICE_ADD_MSG_TITLE);
|