Uat_Study
he 2022-12-12 12:09:31 +08:00
parent ec62b90ea5
commit d98d211bb2
3 changed files with 19 additions and 3 deletions

View File

@ -337,6 +337,11 @@ namespace IRaCIS.Core.Application.Contracts
/// </summary>
public Guid TrialId { get; set; }
/// <summary>
/// 是否有全局阅片任务
/// </summary>
public bool IsGlobalTask { get; set; } = true;
public bool IsSystemCriterion
{
get
@ -796,7 +801,12 @@ namespace IRaCIS.Core.Application.Contracts
/// <summary>
/// eCRF报告是否显示在图像页面
/// </summary>
public bool IseCRFShowInDicomReading { get; set; }
public bool IseCRFShowInDicomReading { get; set; }
/// <summary>
/// 是否有全局阅片任务
/// </summary>
public bool IsGlobalTask { get; set; } = true;
public string GlobalUpdateType { get; set; } = string.Empty;

View File

@ -457,8 +457,9 @@ namespace IRaCIS.Core.Application
await _readingQuestionCriterionTrialRepository.UpdatePartialFromQueryAsync(inDto.TrialReadingCriterionId, x => new ReadingQuestionCriterionTrial()
{
ReadingTool=inDto.ReadingTool,
IsGlobalTask=inDto.IsGlobalTask,
//DigitPlaces=inDto.DigitPlaces,
IsReadingTaskViewInOrder=inDto.IsReadingTaskViewInOrder,
IsReadingTaskViewInOrder =inDto.IsReadingTaskViewInOrder,
ReadingTaskViewEnum = inDto.ReadingTaskViewEnum,
DigitPlaces= inDto.DigitPlaces,
//IsImageIabeled = inDto.IsImageIabeled,

View File

@ -168,10 +168,15 @@ namespace IRaCIS.Core.Domain.Models
public ReadingMethod ReadingType { get; set; } = ReadingMethod.Double;
/// <summary>
/// 全局阅片
/// 阅片
/// </summary>
public bool IsGlobalReading { get; set; } = true;
/// <summary>
/// 是否有全局阅片任务
/// </summary>
public bool IsGlobalTask { get; set; } = true;
/// <summary>
/// 仲裁阅片
/// </summary>