一致性分析修改
parent
cd5e0405de
commit
44ae7bde56
|
@ -105,7 +105,7 @@ namespace IRaCIS.Core.Application.Service.Allocation
|
|||
var list = await _repository.Where<ReadingQuestionCriterionTrial>(t => t.TrialId == trialId && t.IsConfirm)
|
||||
|
||||
.OrderBy(t => t.ShowOrder)
|
||||
.Select(t => new TrialReadingCriterionDto() { TrialReadingCriterionId = t.Id, IsAutoCreate = t.IsAutoCreate, IsAdditionalAssessment = t.IsAdditionalAssessment, TrialReadingCriterionName = t.CriterionName, CriterionType = t.CriterionType, ReadingType = t.ReadingType, ReadingInfoSignTime = t.ReadingInfoSignTime })
|
||||
.Select(t => new TrialReadingCriterionDto() { TrialReadingCriterionId = t.Id, IsAutoCreate = t.IsAutoCreate, IsAdditionalAssessment = t.IsAdditionalAssessment, TrialReadingCriterionName = t.CriterionName, CriterionType = t.CriterionType, ReadingType = t.ReadingType, ReadingInfoSignTime = t.ReadingInfoSignTime , IsReadingPeriod= t.IsReadingPeriod })
|
||||
.ToListAsync();
|
||||
|
||||
//if (list.Count == 0)
|
||||
|
|
|
@ -373,6 +373,8 @@ namespace IRaCIS.Application.Contracts
|
|||
|
||||
|
||||
public bool IsOncologyReading { get; set; }
|
||||
|
||||
public bool IsReadingPeriod { get; set; }
|
||||
}
|
||||
|
||||
public class TrialCriterionReadingCategory
|
||||
|
|
Loading…
Reference in New Issue