修改一版

Uat_Study
he 2022-07-15 13:23:14 +08:00
parent 04b4310178
commit dfec75ea00
3 changed files with 17 additions and 3 deletions

View File

@ -78,13 +78,11 @@ namespace IRaCIS.Application.Services
{ {
await _trialRepository.UpdatePartialFromQueryAsync(inDto.TrialId, x => new Trial() await _trialRepository.UpdatePartialFromQueryAsync(inDto.TrialId, x => new Trial()
{ {
ArbitrationRule = inDto.ArbitrationRule, ArbitrationRule = inDto.ArbitrationRule,
IsArbitrationReading = inDto.IsArbitrationReading, IsArbitrationReading = inDto.IsArbitrationReading,
}); });
var result = await _trialRepository.SaveChangesAsync(); var result = await _trialRepository.SaveChangesAsync();
return ResponseOutput.Ok(result); return ResponseOutput.Ok(result);
} }

View File

@ -128,6 +128,11 @@ namespace IRaCIS.Core.Application.Contracts
public int? DigitPlaces { get; set; } public int? DigitPlaces { get; set; }
//读片任务显示是否顺序
public bool IsReadingTaskViewInOrder { get; set; }
} }
@ -352,6 +357,12 @@ namespace IRaCIS.Core.Application.Contracts
/// <summary>
/// 仲裁阅片
/// </summary>
public bool? IsArbitrationReading { get; set; }
///// <summary> ///// <summary>
///// 全局阅片 ///// 全局阅片
///// </summary> ///// </summary>
@ -763,6 +774,11 @@ namespace IRaCIS.Core.Application.Contracts
//读片任务显示是否顺序
public bool IsReadingTaskViewInOrder { get; set; }
//public string DocumentConfirmSignText { get; set; } = string.Empty; //public string DocumentConfirmSignText { get; set; } = string.Empty;
//public string ImageQCSignText { get; set; } = string.Empty; //public string ImageQCSignText { get; set; } = string.Empty;
//public string PreliminaryAuditReuploadText { get; set; } = string.Empty; //public string PreliminaryAuditReuploadText { get; set; } = string.Empty;