From 4a329cff493bea84e21a89a7f3b32b6be54ae630 Mon Sep 17 00:00:00 2001 From: Vrinda Date: Tue, 19 Sep 2023 17:47:02 +0200 Subject: [PATCH] UI Navigation Studies / Series : Update matching studies / series functions does not send the navigation query filters in request #4211 --- dcm4chee-arc-ui2/src/app/study/study/study.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dcm4chee-arc-ui2/src/app/study/study/study.service.ts b/dcm4chee-arc-ui2/src/app/study/study/study.service.ts index fb7a7fb3de..1de1493c6d 100644 --- a/dcm4chee-arc-ui2/src/app/study/study/study.service.ts +++ b/dcm4chee-arc-ui2/src/app/study/study/study.service.ts @@ -3882,7 +3882,7 @@ export class StudyService { } updateMatchingStudies(study, deviceWebservice: StudyWebService, header: HttpHeaders, params:any) { - const url = `${this.getModifyStudyUrl(deviceWebservice)}/update` + `${params}`; + const url = `${this.getModifyStudyUrl(deviceWebservice)}/update` + `?${params}`; if (url) { return this.$http.post(url, study, header); } @@ -3890,7 +3890,7 @@ export class StudyService { } updateMatchingSeries(series, webApp:DcmWebApp, header: HttpHeaders, params:any) { - const url = `${this.getDicomURL("series", webApp)}/update` + `${params}`; + const url = `${this.getDicomURL("series", webApp)}/update` + `?${params}`; if (url) { return this.$http.post(url, series, header); }