Compare commits
2 Commits
7184ea9565
...
285e742136
Author | SHA1 | Date |
---|---|---|
|
285e742136 | |
|
704a876cf0 |
|
@ -239,9 +239,9 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
public async Task<string> GetTumorEvaluationReportUrl(CaGetVisitReadReportUrl inDto)
|
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();
|
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
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue