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

This commit is contained in:
feng.li
2023-12-26 13:44:58 +08:00
parent 75738d2c0e
commit e8f3e59aef

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());
}
}
}