diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml index 2b2c2ba2c..91df3c337 100644 --- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml +++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml @@ -16275,7 +16275,7 @@ logger loggerHelper - + 请求拦截 请求前后的操作 @@ -21905,11 +21905,6 @@ 读片数量分类统计 - - - 打开失访可读 - - 影像质控风险控制 diff --git a/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs b/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs index 4e70aa087..cb1da9823 100644 --- a/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs +++ b/IRaCIS.Core.Application/Service/Document/SystemDocumentService.cs @@ -216,6 +216,8 @@ namespace IRaCIS.Core.Application.Services return ResponseOutput.Result(true); } + + /// /// 下线系统文档 /// diff --git a/IRaCIS.Core.Application/Service/Document/TrialDocumentService.cs b/IRaCIS.Core.Application/Service/Document/TrialDocumentService.cs index 680450732..ed708e630 100644 --- a/IRaCIS.Core.Application/Service/Document/TrialDocumentService.cs +++ b/IRaCIS.Core.Application/Service/Document/TrialDocumentService.cs @@ -153,7 +153,7 @@ namespace IRaCIS.Core.Application.Services } [HttpPost] - public async Task> GetTrialSignDocumentList(TrialDocQuery inQuery) + public async Task> GetTrialSignDocumentList(TrialDocQuery inQuery) { var trialDocQueryable = from trialDoc in _trialDocumentRepository.Where(t => t.IsPublish) .WhereIf(inQuery.TrialId != null, t => t.TrialId == inQuery.TrialId) @@ -164,7 +164,7 @@ namespace IRaCIS.Core.Application.Services new { trialUser.IdentityUserId, TrialDocumentId = trialDoc.Id } equals new { IdentityUserId = confirm.ConfirmUserId, confirm.TrialDocumentId } into cc from confirm in cc.DefaultIfEmpty() - select new TrialSignDocView() + select new TriaAndSystemlSignDocView() { TrialCode = trialDoc.Trial.TrialCode, ResearchProgramNo = trialDoc.Trial.ResearchProgramNo,