添加会销协作人飞书通知错误

This commit is contained in:
feng.li
2023-12-26 13:39:11 +08:00
parent 9f1aded10f
commit 2ef9ae274c
2 changed files with 8 additions and 3 deletions

View File

@@ -843,8 +843,13 @@ public class ExhibitionServiceImpl implements ExhibitionService {
if (CollectionUtils.isNotEmpty(exhibitionDTO.getCollaborators())){
List<String> userIds = exhibitionDTO.getCollaborators().stream().map(CollaboratorDTO::getCollaborateId).collect(Collectors.toList());
List<String> userIdsByUserIds = enterpriseUserDAO.getFeishuUserIdListByUserIds(userIds);
eventCenterHttpRequest.sendFeiShuNotice(FeiShuNoticeMsgEnum.EXHIBITION_COLLABORATOR, userIdsByUserIds,userInfo.getName(),
exhibitionDTO.getId(),exhibitionDTO.getExhibitionName(),exhibitionDTO.getStartDate(),exhibitionDTO.getLocation());
eventCenterHttpRequest.sendFeiShuNotice(FeiShuNoticeMsgEnum.EXHIBITION_COLLABORATOR,
userIdsByUserIds,
exhibitionDTO.getId(),
userInfo.getName(),
exhibitionDTO.getExhibitionName(),
exhibitionDTO.getStartDate(),
exhibitionDTO.getLocation());
}
}
}

View File

@@ -130,6 +130,6 @@ public class TokenValidateFilter implements Filter {
@Override
public void destroy() {
//do nothing
}
}