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;