uat-lugano NA%
parent
7be3813527
commit
fafc075735
|
|
@ -660,7 +660,7 @@ public class Tumor_CDISC_ExportService(IRepository<ReadingQuestionCriterionTrial
|
|||
}
|
||||
else
|
||||
{
|
||||
if (questionAnswer.ValueType == ValueOfType.Percentage)
|
||||
if (questionAnswer.ValueType == ValueOfType.Percentage && double.TryParse(questionAnswer.QuestionValue, out _))
|
||||
{
|
||||
tr.OriginalMeasurements = questionAnswer.QuestionValue + "%";
|
||||
|
||||
|
|
@ -721,7 +721,9 @@ public class Tumor_CDISC_ExportService(IRepository<ReadingQuestionCriterionTrial
|
|||
rs.RespondEfficacyAssessment = questionAnswer.QuestionValue;
|
||||
}
|
||||
|
||||
if (questionAnswer.QuestionType == QuestionType.Tumor)
|
||||
if ((questionAnswer.QuestionType == QuestionType.Tumor && criterion.CriterionType == CriterionType.RECIST1Point1)||
|
||||
(questionAnswer.QuestionType == QuestionType.ImgOncology && criterion.CriterionType == CriterionType.Lugano2014))
|
||||
|
||||
{
|
||||
rs.AssessmentReason = task.VisitNote;
|
||||
|
||||
|
|
@ -1277,7 +1279,7 @@ public class Tumor_CDISC_ExportService(IRepository<ReadingQuestionCriterionTrial
|
|||
case QuestionType.NoTargetLesion:
|
||||
rsValueTypeIndex = 1;
|
||||
break;
|
||||
case QuestionType.NewLesions:
|
||||
case QuestionType.NewLesionEvaluation:
|
||||
rsValueTypeIndex = 2;
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue