修改导出逻辑
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
9b0cde11c6
commit
49554ae764
|
|
@ -119,10 +119,19 @@ namespace IRaCIS.Core.Application.Service
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
data.ReportUrlList.Add(await _readingCalculateService.GetVisitReadReportUrl(new CaGetVisitReadReportUrl()
|
try
|
||||||
{
|
{
|
||||||
VisitTaskId = item.Id,
|
data.ReportUrlList.Add(await _readingCalculateService.GetVisitReadReportUrl(new CaGetVisitReadReportUrl()
|
||||||
}));
|
{
|
||||||
|
VisitTaskId = item.Id,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.TumorEvaluationUrl != string.Empty)
|
if (item.TumorEvaluationUrl != string.Empty)
|
||||||
|
|
@ -131,10 +140,19 @@ namespace IRaCIS.Core.Application.Service
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
data.ReportUrlList.Add(await _readingCalculateService.GetTumorEvaluationReportUrl(new CaGetVisitReadReportUrl()
|
try
|
||||||
{
|
{
|
||||||
VisitTaskId = item.Id,
|
data.ReportUrlList.Add(await _readingCalculateService.GetTumorEvaluationReportUrl(new CaGetVisitReadReportUrl()
|
||||||
}));
|
{
|
||||||
|
VisitTaskId = item.Id,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
result.Add(data);
|
result.Add(data);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue