From e00f8b35498714370f9130079c932c92214ce278 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Thu, 29 Jan 2026 11:17:44 +0800 Subject: [PATCH] =?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/SiteSurvey/DTO/TrialSiteSurveyViewModel.cs | 2 +- .../Service/SiteSurvey/TrialSiteSurveyService.cs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/SiteSurvey/DTO/TrialSiteSurveyViewModel.cs b/IRaCIS.Core.Application/Service/SiteSurvey/DTO/TrialSiteSurveyViewModel.cs index 5d23847f5..c78b39c9d 100644 --- a/IRaCIS.Core.Application/Service/SiteSurvey/DTO/TrialSiteSurveyViewModel.cs +++ b/IRaCIS.Core.Application/Service/SiteSurvey/DTO/TrialSiteSurveyViewModel.cs @@ -232,7 +232,7 @@ namespace IRaCIS.Core.Application.Contracts { public string EmailOrPhone { get; set; } - public Guid TrialId { get; set; } + public Guid? TrialId { get; set; } } public class VerifyEmialGetDoctorInfoInDto diff --git a/IRaCIS.Core.Application/Service/SiteSurvey/TrialSiteSurveyService.cs b/IRaCIS.Core.Application/Service/SiteSurvey/TrialSiteSurveyService.cs index 88a0e24aa..a6b34093e 100644 --- a/IRaCIS.Core.Application/Service/SiteSurvey/TrialSiteSurveyService.cs +++ b/IRaCIS.Core.Application/Service/SiteSurvey/TrialSiteSurveyService.cs @@ -170,7 +170,8 @@ namespace IRaCIS.Core.Application.Contracts AcceptingNewTrial = false, ActivelyReading = false, ResumeStatus = ResumeStatusEnum.Pass, - CooperateStatus = ContractorStatusEnum.Noncooperation, + CooperateStatus = inDto.TrialId==null? ContractorStatusEnum.Noncooperation: ContractorStatusEnum.Cooperation, +, ReviewStatus = ReviewerInformationConfirmStatus.ConfirmRefuse };