diff --git a/src/app/core/services/param/param.service.ts b/src/app/core/services/param/param.service.ts index 1a7c513..3983468 100644 --- a/src/app/core/services/param/param.service.ts +++ b/src/app/core/services/param/param.service.ts @@ -16,7 +16,7 @@ export class ParamService { private userService = inject(UserService); getParameters(P_PARAMTYPE: string): Observable { - return this.http.get(`${this.apiUrl}/${this.apiDb}/GetParamValues?P_SPID=${this.userService.getUserSpid()}&P_PARAMTYPE=${P_PARAMTYPE}`).pipe( + return this.http.get(`${this.apiUrl}/${this.apiDb}/GetALLParamValues?P_SPID=${this.userService.getUserSpid()}&P_PARAMTYPE=${P_PARAMTYPE}`).pipe( map(response => this.mapToParamValue(response)) ) }