From f19e0092bbb72fd35b25eb79f6c57a6b3d1226a1 Mon Sep 17 00:00:00 2001 From: Kallesh B S Date: Mon, 28 Jul 2025 21:08:09 +0530 Subject: [PATCH] servioce modified to GetALLParamValues from GetParamValues --- src/app/core/services/param/param.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) ) }