fix: accounts TS interfaces.

This commit is contained in:
Ahmed Bouhuolia
2020-09-28 17:45:26 +02:00
parent f035c7f10a
commit 108b52962a
5 changed files with 529 additions and 9 deletions

View File

@@ -4,14 +4,22 @@ export interface IAccountDTO {
name: string,
code: string,
description: string,
accountTypeNumber: number,
accountTypeId: number,
parentAccountId: number,
active: boolean,
};
export interface IAccount {
name: string,
slug: string,
code: string,
description: string,
accountTypeNumber: number,
accountTypeId: number,
parentAccountId: number,
active: boolean,
predefined: boolean,
amount: number,
currencyCode: string,
};
export interface IAccountsFilter extends IDynamicListFilterDTO {