修改一版

Uat_Study
he 2023-01-29 17:39:25 +08:00
parent 228f970cf9
commit ab89154e67
2 changed files with 1 additions and 3 deletions

View File

@ -898,7 +898,7 @@ namespace IRaCIS.Application.Services
var questionIds = needAddDatas.Select(x => x.Id).ToList();
var tableQuestionRelation = _readingTableQuestionTrialRepository.Where(x => x.TrialCriterionId== trialCriterion.Id).ToDictionary(
var tableQuestionRelation = _readingTableQuestionTrialRepository.Where(x => x.TrialCriterionId== trialCriterion.Id&&x.SystemTableQuestionId!=null).ToDictionary(
x => x.SystemTableQuestionId ?? default(Guid),
x => x.Id
);

View File

@ -645,8 +645,6 @@ namespace IRaCIS.Application.Services
OrganInfos= organList
}
),new {
IsBaseline= taskInfo.SourceSubjectVisit!=null&&taskInfo.SourceSubjectVisit.IsBaseLine
});