Uat_Study
parent
d4a3f1c69a
commit
1c2030a425
|
@ -387,6 +387,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
{
|
{
|
||||||
public string Answer { get; set; }
|
public string Answer { get; set; }
|
||||||
|
|
||||||
|
public bool IsFirstChangeTask { get; set; } = false;
|
||||||
public List<CrterionDictionaryGroup> CrterionDictionaryGroup { get; set; }
|
public List<CrterionDictionaryGroup> CrterionDictionaryGroup { get; set; }
|
||||||
|
|
||||||
public List<DicomReadingQuestionAnswer> Childrens = new List<DicomReadingQuestionAnswer>();
|
public List<DicomReadingQuestionAnswer> Childrens = new List<DicomReadingQuestionAnswer>();
|
||||||
|
|
|
@ -643,6 +643,14 @@ namespace IRaCIS.Application.Services
|
||||||
{
|
{
|
||||||
x.CrterionDictionaryGroup = taskinfo.CrterionDictionaryGroup;
|
x.CrterionDictionaryGroup = taskinfo.CrterionDictionaryGroup;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (taskinfo.IsConvertedTask && taskinfo.BeforeConvertedTaskId != null)
|
||||||
|
{
|
||||||
|
questions.ForEach(x =>
|
||||||
|
{
|
||||||
|
x.IsFirstChangeTask =true;
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue