From a9e5a7754eee26919e24e45021e7dd37dd9a0526 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Thu, 11 Dec 2025 09:37:43 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E7=BB=9F=E8=AE=A1?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/TrialSiteUser/TrialStatService.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/IRaCIS.Core.Application/Service/TrialSiteUser/TrialStatService.cs b/IRaCIS.Core.Application/Service/TrialSiteUser/TrialStatService.cs index b88e8fdb6..bdb2116ca 100644 --- a/IRaCIS.Core.Application/Service/TrialSiteUser/TrialStatService.cs +++ b/IRaCIS.Core.Application/Service/TrialSiteUser/TrialStatService.cs @@ -28,6 +28,7 @@ public class TrialStatService( /// 访视完成度 /// /// + [HttpPost] public async Task> GetTrialVisitFinishedStatList(VisitFinishedStatQuery inQuery) { @@ -63,6 +64,7 @@ public class TrialStatService( /// 质疑统计列表 --医学审核不区分标准 /// /// + [HttpPost] public async Task> GetTrialQuestionStatList(VisitQuestionStatQuery inQuery) { @@ -96,6 +98,7 @@ public class TrialStatService( /// /// /// + [HttpPost] public async Task> GetTrialEfficacyEvaluationStatList(EfficacyEvaluationQuery inQuery) { From deb7e77263b6db6a54c8e75b8d616b659ce6e4fd Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Thu, 11 Dec 2025 10:26:16 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E6=96=87=E6=A1=A3?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E7=A6=81=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Service/Document/TrialDocumentService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/IRaCIS.Core.Application/Service/Document/TrialDocumentService.cs b/IRaCIS.Core.Application/Service/Document/TrialDocumentService.cs index bbdd30b1d..c53becf40 100644 --- a/IRaCIS.Core.Application/Service/Document/TrialDocumentService.cs +++ b/IRaCIS.Core.Application/Service/Document/TrialDocumentService.cs @@ -1092,6 +1092,7 @@ namespace IRaCIS.Core.Application.Services return ResponseOutput.NotOk(_localizer["TrialD_DuplicateFileInProject"]); } + entity.IsDeleted = true; //entity.Id = NewId.NextGuid(); await _trialDocumentRepository.AddAsync(entity, true); return ResponseOutput.Ok(entity.Id.ToString());