Uat_Study
he 2023-03-24 11:24:22 +08:00
parent d4a3f1c69a
commit 1c2030a425
2 changed files with 9 additions and 0 deletions

View File

@ -387,6 +387,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
{
public string Answer { get; set; }
public bool IsFirstChangeTask { get; set; } = false;
public List<CrterionDictionaryGroup> CrterionDictionaryGroup { get; set; }
public List<DicomReadingQuestionAnswer> Childrens = new List<DicomReadingQuestionAnswer>();

View File

@ -643,6 +643,14 @@ namespace IRaCIS.Application.Services
{
x.CrterionDictionaryGroup = taskinfo.CrterionDictionaryGroup;
});
if (taskinfo.IsConvertedTask && taskinfo.BeforeConvertedTaskId != null)
{
questions.ForEach(x =>
{
x.IsFirstChangeTask =true;
});
}
}
else
{