无序阅片随机顺序
parent
35f5a362e3
commit
b006fff6ed
|
@ -2307,6 +2307,8 @@ namespace IRaCIS.Application.Services
|
|||
throw new BusinessValidationFailedException(_localizer["ReadingImage_IDMust"]);
|
||||
}
|
||||
|
||||
var trialReadingCriterion = await _readingQuestionCriterionTrialRepository.FindAsync(trialReadingCriterionId ?? Guid.Empty);
|
||||
|
||||
if (inDto.VisitTaskId != null)
|
||||
{
|
||||
task = await _visitTaskRepository.Where(x => x.Id == inDto.VisitTaskId).Select(x => new GetReadingTaskDto()
|
||||
|
@ -2325,7 +2327,7 @@ namespace IRaCIS.Application.Services
|
|||
trialReadingCriterionId = task.TrialReadingCriterionId;
|
||||
|
||||
}
|
||||
else if (inDto.SubjectId != null)
|
||||
else if (inDto.SubjectId != null && trialReadingCriterion.IsReadingTaskViewInOrder)
|
||||
{
|
||||
var subjectTaskList = (await _visitTaskService.GetOrderReadingIQueryable(new GetOrderReadingIQueryableInDto()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue