分裂病灶加个判断
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
e45791c676
commit
b0d8a49929
|
|
@ -431,7 +431,7 @@ public class Tumor_CDISC_ExportService(IRepository<ReadingQuestionCriterionTrial
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
foreach (var lesion in task.LesionList.OrderBy(t=>t.LessionType))
|
foreach (var lesion in task.LesionList.OrderBy(t => t.LessionType))
|
||||||
{
|
{
|
||||||
|
|
||||||
#region tu 表处理部分
|
#region tu 表处理部分
|
||||||
|
|
@ -936,7 +936,7 @@ public class Tumor_CDISC_ExportService(IRepository<ReadingQuestionCriterionTrial
|
||||||
|
|
||||||
switch (questionAnswer.QuestionType)
|
switch (questionAnswer.QuestionType)
|
||||||
{
|
{
|
||||||
|
|
||||||
//LIVESTAT
|
//LIVESTAT
|
||||||
case QuestionType.LiverState:
|
case QuestionType.LiverState:
|
||||||
trValueTypeIndex = 12;
|
trValueTypeIndex = 12;
|
||||||
|
|
@ -959,7 +959,7 @@ public class Tumor_CDISC_ExportService(IRepository<ReadingQuestionCriterionTrial
|
||||||
case QuestionType.ExistPET:
|
case QuestionType.ExistPET:
|
||||||
trValueTypeIndex = 17;
|
trValueTypeIndex = 17;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case QuestionType.MediastinumSUVmax:
|
case QuestionType.MediastinumSUVmax:
|
||||||
trValueTypeIndex = 18;
|
trValueTypeIndex = 18;
|
||||||
break;
|
break;
|
||||||
|
|
@ -1004,7 +1004,7 @@ public class Tumor_CDISC_ExportService(IRepository<ReadingQuestionCriterionTrial
|
||||||
trValueTypeIndex = 30;
|
trValueTypeIndex = 30;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1120,7 +1120,7 @@ public class Tumor_CDISC_ExportService(IRepository<ReadingQuestionCriterionTrial
|
||||||
|
|
||||||
return rsValueTypeIndex;
|
return rsValueTypeIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1136,7 +1136,7 @@ public class Tumor_CDISC_ExportService(IRepository<ReadingQuestionCriterionTrial
|
||||||
var lesionTypeIndex = -1;
|
var lesionTypeIndex = -1;
|
||||||
|
|
||||||
//分裂的病灶
|
//分裂的病灶
|
||||||
if (lesion.SplitRowId != null)
|
if (lesion.SplitRowId != null && lesion.SplitRowId != Guid.Empty)
|
||||||
{
|
{
|
||||||
lesionTypeIndex = 3;
|
lesionTypeIndex = 3;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue