Merge remote-tracking branch 'hsay/dev/feat/partner1.6_20231226' into dev/feat/partner1.6_20231226

This commit is contained in:
陈伏伽
2023-12-26 14:03:16 +08:00

View File

@@ -851,8 +851,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());
}
}
}