|
@@ -53,7 +53,10 @@ namespace GxPress.Service.Implement.Collection
|
|
|
IArticleRepository articleRepository, ITopicRepository topicRepository, IMiddleRepository middleRepository,
|
|
|
INoteRepository noteRepository, IUserRepository userRepository, IArticleService articleService, INoticeRepository noticeRepository,
|
|
|
IMissiveRepository missiveRepository, IMapper mapper,
|
|
|
- IGroupRepository groupRepository, IMeetingSummaryRepository meetingSummaryRepository, IFolderUserRepository folderUserRepository, IAnalyzeService analyzeService, IFileLibraryRepository fileLibraryRepository, IUserMiddleService userMiddleService, IMediaRepository mediaRepository, IMeetingRepository meetingRepository)
|
|
|
+ IGroupRepository groupRepository, IMeetingSummaryRepository meetingSummaryRepository,
|
|
|
+ IFolderUserRepository folderUserRepository,
|
|
|
+ IAnalyzeService analyzeService,
|
|
|
+ IFileLibraryRepository fileLibraryRepository, IUserMiddleService userMiddleService, IMediaRepository mediaRepository, IMeetingRepository meetingRepository)
|
|
|
{
|
|
|
_collectionRepository = collectionRepository;
|
|
|
_middleService = middleService;
|
|
@@ -653,8 +656,8 @@ namespace GxPress.Service.Implement.Collection
|
|
|
}
|
|
|
//工作流
|
|
|
|
|
|
- //300 文件
|
|
|
- if (collectionType == GxPress.EnumConst.AllTypeConst.Flow.GetHashCode())
|
|
|
+ // 文件
|
|
|
+ if (collectionType == GxPress.EnumConst.AllTypeConst.File.GetHashCode())
|
|
|
{
|
|
|
var fileLibrary = await fileLibraryRepository.GetFileLibraryByIdAsync(collectionDataId);
|
|
|
if (fileLibrary == null)
|
|
@@ -677,7 +680,7 @@ namespace GxPress.Service.Implement.Collection
|
|
|
FileSize = fileLibrary.Size
|
|
|
};
|
|
|
}
|
|
|
- //400 会议纪要
|
|
|
+ // 会议纪要
|
|
|
if (collectionType == GxPress.EnumConst.AllTypeConst.MeetingSummary.GetHashCode())
|
|
|
{
|
|
|
var meetingSummary = await _meetingSummaryRepository.GetAsync(collectionDataId);
|