From 49ac88399fce4ad8edfdad301d262aa8c67360d6 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Thu, 7 Jul 2022 17:12:46 +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/Reading/Dto/ReadingMedicalReviewDto.cs | 2 +- .../Service/Reading/ReadingMedicalReviewService.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs index a04127d8f..6dc7fff86 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs @@ -194,7 +194,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public Guid TrialId { get; set; } - public bool IsCopyOrigenalForms { get; set; } = false; + public bool? IsCopyOrigenalForms { get; set; } = false; public string RequestReReadingReason { get; set; } = string.Empty; diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs index 90e5a1f55..b10c6d806 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs @@ -373,7 +373,7 @@ namespace IRaCIS.Core.Application.Service { await _visitTaskService.ApplyReReading(new ApplyReReadingCommand() { - IsCopyOrigenalForms = inDto.IsCopyOrigenalForms, + IsCopyOrigenalForms = inDto.IsCopyOrigenalForms.Value, RequestReReadingReason = inDto.RequestReReadingReason, RequestReReadingType = RequestReReadingType.DocotorApply, TrialId = inDto.TrialId,