Compare commits
No commits in common. "285e742136803981613caf16e22396e72200fea4" and "7184ea956571cc66934cd97b0f56686f63e75c11" have entirely different histories.
285e742136
...
7184ea9565
|
@ -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.TumorEvaluationUrl != string.Empty)
|
if (taskinfo.ReportExportUrl != string.Empty)
|
||||||
{
|
{
|
||||||
return taskinfo.TumorEvaluationUrl;
|
return taskinfo.ReportExportUrl;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue