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

Added userId for fetching van location details #88

Merged
merged 2 commits into from
Mar 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading