Unfinished Company Component

This commit is contained in:
Tom Slater 2019-07-11 15:17:50 +01:00
parent c1e2ce73e7
commit c13acc6ce3
9 changed files with 82 additions and 18 deletions

View file

@ -133,6 +133,27 @@ export class ApiService {
);
}
// LCC data
public externalTransactions() {
const key = this.sessionKey;
return this.http.post<any>(
this.apiUrl + '/v1/organisation/external/transactions',
{
session_key : key,
}
);
}
public externalSuppliers() {
const key = this.sessionKey;
return this.http.post<any>(
this.apiUrl + '/organisation/external/suppliers',
{
session_key : key,
}
);
}
// Searches organisations used for transaction submission
public search(data) {