Skip to content

Commit

Permalink
UI Navigation Studies / Series : Update matching studies / series fun…
Browse files Browse the repository at this point in the history
…ctions does not send the navigation query filters in request #4211
  • Loading branch information
vrindanayak committed Sep 19, 2023
1 parent da63ded commit 4a329cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dcm4chee-arc-ui2/src/app/study/study/study.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3882,15 +3882,15 @@ 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);
}
return throwError({error: $localize `:@@study.error_on_getting_the_webapp_url:Error on getting the WebApp URL`});
}

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);
}
Expand Down

0 comments on commit 4a329cf

Please sign in to comment.