From dfec75ea00583c16db77153ce8b9a415542ee247 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Fri, 15 Jul 2022 13:23:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=80=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Reading/ReadingQuestionService.cs | 2 -- .../Service/TrialSiteUser/DTO/TrialConfigDTO.cs | 16 ++++++++++++++++ .../Service/TrialSiteUser/TrialConfigService.cs | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs index 8f2f097a1..4966b0984 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingQuestionService.cs @@ -78,13 +78,11 @@ namespace IRaCIS.Application.Services { await _trialRepository.UpdatePartialFromQueryAsync(inDto.TrialId, x => new Trial() { - ArbitrationRule = inDto.ArbitrationRule, IsArbitrationReading = inDto.IsArbitrationReading, }); var result = await _trialRepository.SaveChangesAsync(); - return ResponseOutput.Ok(result); } diff --git a/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialConfigDTO.cs b/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialConfigDTO.cs index 53af11dcc..cd220149a 100644 --- a/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialConfigDTO.cs +++ b/IRaCIS.Core.Application/Service/TrialSiteUser/DTO/TrialConfigDTO.cs @@ -128,6 +128,11 @@ namespace IRaCIS.Core.Application.Contracts public int? DigitPlaces { get; set; } + + //读片任务显示是否顺序 + public bool IsReadingTaskViewInOrder { get; set; } + + } @@ -352,6 +357,12 @@ namespace IRaCIS.Core.Application.Contracts + /// + /// 仲裁阅片 + /// + public bool? IsArbitrationReading { get; set; } + + ///// ///// 全局阅片 ///// @@ -763,6 +774,11 @@ namespace IRaCIS.Core.Application.Contracts + //读片任务显示是否顺序 + public bool IsReadingTaskViewInOrder { get; set; } + + + //public string DocumentConfirmSignText { get; set; } = string.Empty; //public string ImageQCSignText { get; set; } = string.Empty; //public string PreliminaryAuditReuploadText { get; set; } = string.Empty; diff --git a/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs b/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs index 400e97320..696275c2d 100644 --- a/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs +++ b/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs @@ -13,7 +13,7 @@ using Panda.DynamicWebApi.Attributes; namespace IRaCIS.Core.Application { [ApiExplorerSettings(GroupName = "Trial")] - public class TrialConfigService : BaseService, ITrialConfigService + public class TrialConfigService : BaseService, ITrialConfigService { private readonly IRepository _trialRepository; private readonly IRepository _trialQCQuestionRepository;