Compare commits
No commits in common. "53b2b9156f2c27c5997273a6a012c0768c3416a9" and "09ee238e50ab12a686f5be429edf0587fb112137" have entirely different histories.
53b2b9156f
...
09ee238e50
|
|
@ -660,7 +660,7 @@ public class Tumor_CDISC_ExportService(IRepository<ReadingQuestionCriterionTrial
|
|||
}
|
||||
else
|
||||
{
|
||||
if (questionAnswer.ValueType == ValueOfType.Percentage && double.TryParse(questionAnswer.QuestionValue, out _))
|
||||
if (questionAnswer.ValueType == ValueOfType.Percentage)
|
||||
{
|
||||
tr.OriginalMeasurements = questionAnswer.QuestionValue + "%";
|
||||
|
||||
|
|
@ -721,9 +721,7 @@ public class Tumor_CDISC_ExportService(IRepository<ReadingQuestionCriterionTrial
|
|||
rs.RespondEfficacyAssessment = questionAnswer.QuestionValue;
|
||||
}
|
||||
|
||||
if ((questionAnswer.QuestionType == QuestionType.Tumor && criterion.CriterionType == CriterionType.RECIST1Point1)||
|
||||
(questionAnswer.QuestionType == QuestionType.ImgOncology && criterion.CriterionType == CriterionType.Lugano2014))
|
||||
|
||||
if (questionAnswer.QuestionType == QuestionType.Tumor)
|
||||
{
|
||||
rs.AssessmentReason = task.VisitNote;
|
||||
|
||||
|
|
@ -1279,7 +1277,7 @@ public class Tumor_CDISC_ExportService(IRepository<ReadingQuestionCriterionTrial
|
|||
case QuestionType.NoTargetLesion:
|
||||
rsValueTypeIndex = 1;
|
||||
break;
|
||||
case QuestionType.NewLesionEvaluation:
|
||||
case QuestionType.NewLesions:
|
||||
rsValueTypeIndex = 2;
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue