修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
6ed0ea76da
commit
baffb0bb35
|
|
@ -437,7 +437,7 @@ namespace IRaCIS.Core.Application.Services
|
||||||
/// <param name="indto"></param>
|
/// <param name="indto"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public async Task<VisitStudyDTO?> GetKeySeries(GetReadingVisitStudyListIndto indto)
|
public async Task<VisitStudyDTO> GetKeySeries(GetReadingVisitStudyListIndto indto)
|
||||||
{
|
{
|
||||||
var rowInfoList = await _readingTableAnswerRowInfoRepository.Where(x => x.VisitTaskId == indto.VisitTaskId && x.StudyId != null).OrderBy(x => x.ReadingQuestionTrial.ShowOrder).ThenBy(x => x.RowIndex).Select(x => new StudyInstanceInfo()
|
var rowInfoList = await _readingTableAnswerRowInfoRepository.Where(x => x.VisitTaskId == indto.VisitTaskId && x.StudyId != null).OrderBy(x => x.ReadingQuestionTrial.ShowOrder).ThenBy(x => x.RowIndex).Select(x => new StudyInstanceInfo()
|
||||||
{
|
{
|
||||||
|
|
@ -542,7 +542,7 @@ namespace IRaCIS.Core.Application.Services
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return new VisitStudyDTO() { StudyId= default(Guid) };
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -664,10 +664,7 @@ namespace IRaCIS.Core.Application.Services
|
||||||
{
|
{
|
||||||
studyList.Insert(0, keySeries);
|
studyList.Insert(0, keySeries);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
studyList.Insert(0, new VisitStudyDTO() { StudyId= default(Guid) });
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue