Test_HIR_Net8
he 2025-03-25 14:34:06 +08:00
parent 965c8a56c9
commit 704a876cf0
1 changed files with 2 additions and 2 deletions

View File

@ -239,9 +239,9 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
public async Task<string> 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
{