Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #88 from devikasuresh20/develop
Browse files Browse the repository at this point in the history
Added userId for fetching van location details
  • Loading branch information
ravishanigarapu authored Mar 28, 2024
2 parents 9ffdf27 + d952c26 commit 2d8165d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/service-point/service-point.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ export class ServicePointService {
getMMUDemographics() {
const vanID = JSON.parse(localStorage.getItem('serviceLineDetails')).vanID;
const spPSMID = localStorage.getItem('providerServiceID');
let userID = localStorage.getItem('userID');

return this.http.post(environment.demographicsCurrentMasterUrl, { vanID: vanID, spPSMID: spPSMID })
return this.http.post(environment.demographicsCurrentMasterUrl, { vanID: vanID, spPSMID: spPSMID , userID: userID})
.map(res => res.json())
.catch(err => {
return Observable.throw(err);
Expand Down

0 comments on commit 2d8165d

Please sign in to comment.