Merge branch 'Test_HIR_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_HIR_Net8
continuous-integration/drone/push Build is passing Details

Test_HIR_Net8
he 2025-03-25 09:37:00 +08:00
commit d0d249655b
1 changed files with 6 additions and 2 deletions

View File

@ -3071,14 +3071,18 @@ namespace IRaCIS.Application.Services
};
//看当前前端有没有传递modality有的话以前端为准没有的话以配置为准 构造同样数量的请求
var requestModalityList = (inQuery.ModalitiesInStudyList != null && inQuery.ModalitiesInStudyList.Count > 0) ? inQuery.ModalitiesInStudyList : find.ModalityList;
//支持多模态的Pacs
var modality = string.Join($"\\", requestModalityList);
if (inQuery.TrialId == null)
{
//判断前段有没有传递时间
if (find.PacsSearchMaxDays != 0)
{
@ -3143,7 +3147,7 @@ namespace IRaCIS.Application.Services
}
var request = CreateStudyRequest(cloneInQuery, modality);
var request = CreateStudyRequest(cloneInQuery, "");
request.OnResponseReceived += responseDelegate;
await client.AddRequestAsync(request);