fixed modals to use new endpoint and scrapped old pages
This commit is contained in:
parent
7843a87fd6
commit
4a331a3475
11 changed files with 51 additions and 159 deletions
|
@ -276,6 +276,15 @@ export class ApiService {
|
|||
);
|
||||
}
|
||||
|
||||
// Load LIS Data
|
||||
public getLisData(data) {
|
||||
data.session_key = this.sessionKey;
|
||||
return this.http.post<any>(
|
||||
this.apiUrl + '/v1/supplier/location/lis',
|
||||
data
|
||||
);
|
||||
}
|
||||
|
||||
// Basic Customer User stats API
|
||||
public basicStats() {
|
||||
const key = this.sessionKey;
|
||||
|
|
Reference in a new issue