From a83967149ba4397812c8f8c65a8d55d7e33b5346 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Thu, 7 Jul 2022 16:49:51 +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 | 5 +++++ .../Service/Reading/ReadingMedicalReviewService.cs | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs index c88aa4084..eef79e9ee 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs @@ -86,6 +86,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// public bool IsClosedDialog { get; set; } + /// + /// 是否有问题 + /// + public bool IsHaveQuestion { get; set; } = false; + public Guid VisitTaskId { get; set; } diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs index b8995606d..a40f2756b 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs @@ -420,7 +420,7 @@ namespace IRaCIS.Core.Application.Service IsIRReply= result.Any(x=>x.UserTypeEnumInt== (int)UserTypeEnum.IndependentReviewer), taskMedicalReview.IsClosedDialog, - taskMedicalReview.IsHaveQuestion, + taskMedicalReview.IsHaveQuestion, }); } @@ -521,7 +521,9 @@ namespace IRaCIS.Core.Application.Service AuditAdviceEnum = x.AuditAdviceEnum, DoctorUserIdeaEnum = x.DoctorUserIdeaEnum, SaveConclusionTime=x.SaveConclusionTime, - IsClosedDialog=x.IsClosedDialog + IsClosedDialog=x.IsClosedDialog, + IsHaveQuestion=x.IsHaveQuestion, + }); var result=await taskMedicalReviewquery.ToPagedListAsync(inDto.PageIndex, inDto.PageSize, inDto.SortField.IsNullOrEmpty() ? nameof(GetIRMedicalFeedbackListOutDto.AuditState) : inDto.SortField,