Added proper supplier table

This commit is contained in:
Finn 2019-07-12 18:50:59 +01:00
parent 8dbdcbb481
commit 85f91f0d4b
7 changed files with 77 additions and 24 deletions

View file

@ -144,12 +144,13 @@ export class ApiService {
);
}
public externalSuppliers() {
public externalSuppliers(data) {
const key = this.sessionKey;
return this.http.post<any>(
this.apiUrl + '/organisation/external/suppliers',
this.apiUrl + '/v1/organisation/external/suppliers',
{
session_key : key,
page : data
}
);
}