fix: specific account transactions.

fix: specific expense associated expense account graph.
fix: specific manual journal associated account and contact graph.
This commit is contained in:
a.bouhuolia
2021-04-25 23:41:54 +02:00
parent fcc95d9e01
commit c75109a975
7 changed files with 102 additions and 4 deletions

View File

@@ -28,6 +28,13 @@ export interface IAccount {
accountParentType: string,
};
export interface IAccountsTransactionsFilter {
accountId?: number,
}
export interface IAccountTransaction {
}
export interface IAccountResponse extends IAccount {
}