added new category transaction listing page

This commit is contained in:
piratefinn 2018-01-17 17:36:28 +00:00
parent 739d91a444
commit b7c73d5e48
6 changed files with 100 additions and 0 deletions

View file

@ -127,6 +127,17 @@ export class ApiService {
);
}
// Basic Customer User stats API
public categoryTransactionList() {
const key = this.sessionKey;
return this.http.post<any>(
this.apiUrl + '/stats/category',
{
session_key : key,
}
);
}
// Searches organisations used for transaction submission
public search(data) {