diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs index 8ce688dfa..fdf25359e 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/General/ReadingCalculateService.cs @@ -239,9 +239,9 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate public async Task GetTumorEvaluationReportUrl(CaGetVisitReadReportUrl inDto) { var taskinfo = await _visitTaskRepository.Where(x => x.Id == inDto.VisitTaskId).Include(x => x.Subject).Include(x => x.SourceSubjectVisit).FirstNotNullAsync(); - if (taskinfo.ReportExportUrl != string.Empty) + if (taskinfo.TumorEvaluationUrl != string.Empty) { - return taskinfo.ReportExportUrl; + return taskinfo.TumorEvaluationUrl; } else {