mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
refactoring: balance sheet report.
refactoring: trial balance sheet report. refactoring: general ledger report. refactoring: journal report. refactoring: P&L report.
This commit is contained in:
@@ -10,9 +10,11 @@ export interface IAccountDTO {
|
||||
};
|
||||
|
||||
export interface IAccount {
|
||||
id: number,
|
||||
name: string,
|
||||
slug: string,
|
||||
code: string,
|
||||
index: number,
|
||||
description: string,
|
||||
accountTypeId: number,
|
||||
parentAccountId: number,
|
||||
@@ -20,6 +22,8 @@ export interface IAccount {
|
||||
predefined: boolean,
|
||||
amount: number,
|
||||
currencyCode: string,
|
||||
transactions?: any[],
|
||||
type?: any[],
|
||||
};
|
||||
|
||||
export interface IAccountsFilter extends IDynamicListFilterDTO {
|
||||
|
||||
Reference in New Issue
Block a user