修改一版

Uat_Study
he 2022-10-19 10:53:35 +08:00
parent fc3906c897
commit 30e9054144
2 changed files with 8 additions and 0 deletions

View File

@ -804,6 +804,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Guid VisitTaskId { get; set; }
public Guid VisistId { get; set; }
public bool IsExistsClinicalData { get; set; }
public string TaskBlindName { get; set; }
public Guid SubjectId { get; set; }

View File

@ -1286,7 +1286,13 @@ namespace IRaCIS.Application.Services
task.IsReadingShowPreviousResults = criterionInfo.IsReadingShowPreviousResults;
task.IsReadingShowSubjectInfo = criterionInfo.IsReadingShowSubjectInfo;
task.IsExistsClinicalData = (await _readingClinicalDataService.GetClinicalDataList(new GetReadingOrTaskClinicalDataListInDto()
{
SubjectId = task.SubjectId,
TrialId = inDto.TrialId,
VisitTaskId = task.VisitTaskId,
})).Count() > 0;
return task;