|
@@ -889,7 +889,7 @@ public class SopLogsTaskServiceImpl implements SopLogsTaskService {
|
|
|
createParam.setCompanyUserId(Long.parseLong(companyUserId));
|
|
|
createParam.setCompanyId(Long.parseLong(companyId));
|
|
|
createParam.setChatId(logVo.getChatId());
|
|
|
- createParam.setQwUserId(qwUserId);
|
|
|
+ createParam.setQwUserId(Long.parseLong(qwUserId));
|
|
|
createParam.setDays(setting.getExpiresDays());
|
|
|
R createLink = courseLinkService.createRoomLinkUrl(createParam);
|
|
|
if (createLink.get("code").equals(500)) {
|
|
@@ -1016,7 +1016,7 @@ public class SopLogsTaskServiceImpl implements SopLogsTaskService {
|
|
|
// 手动创建 FsCourseLink 对象,避免使用 BeanUtils.copyProperties
|
|
|
FsCourseLink link = new FsCourseLink();
|
|
|
link.setCompanyId(Long.parseLong(companyId));
|
|
|
- link.setQwUserId(qwUserId);
|
|
|
+ link.setQwUserId(Long.parseLong(qwUserId));
|
|
|
link.setCompanyUserId(Long.parseLong(companyUserId));
|
|
|
link.setVideoId(videoId.longValue());
|
|
|
link.setCorpId(logVo.getCorpId());
|
|
@@ -1174,7 +1174,7 @@ public class SopLogsTaskServiceImpl implements SopLogsTaskService {
|
|
|
// 手动创建 FsCourseLink 对象,避免使用 BeanUtils.copyProperties
|
|
|
FsCourseLink link = new FsCourseLink();
|
|
|
link.setCompanyId(Long.parseLong(companyId));
|
|
|
- link.setQwUserId(qwUserId);
|
|
|
+ link.setQwUserId(Long.parseLong(qwUserId));
|
|
|
link.setCompanyUserId(Long.parseLong(companyUserId));
|
|
|
link.setVideoId(videoId.longValue());
|
|
|
link.setCorpId(corpId);
|
|
@@ -1230,7 +1230,7 @@ public class SopLogsTaskServiceImpl implements SopLogsTaskService {
|
|
|
// 手动创建 FsCourseLink 对象,避免使用 BeanUtils.copyProperties
|
|
|
FsCourseLink link = new FsCourseLink();
|
|
|
link.setCompanyId(Long.parseLong(companyId));
|
|
|
- link.setQwUserId(qwUserId);
|
|
|
+ link.setQwUserId(Long.parseLong(qwUserId));
|
|
|
link.setCompanyUserId(Long.parseLong(companyUserId));
|
|
|
link.setVideoId(videoId.longValue());
|
|
|
link.setCorpId(logVo.getCorpId());
|
|
@@ -1293,7 +1293,7 @@ public class SopLogsTaskServiceImpl implements SopLogsTaskService {
|
|
|
watchLog.setVideoId(videoId != null ? videoId.longValue() : null);
|
|
|
watchLog.setQwExternalContactId(externalId != null ? Long.valueOf(externalId) : null);
|
|
|
watchLog.setSendType(2);
|
|
|
- watchLog.setQwUserId(qwUserId);
|
|
|
+ watchLog.setQwUserId(Long.parseLong(qwUserId));
|
|
|
watchLog.setSopId(sopLogs.getSopId());
|
|
|
watchLog.setDuration(0L);
|
|
|
watchLog.setCourseId(courseId != null ? courseId.longValue() : null);
|