mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
feat(server): wip journal and general ledger table layer
This commit is contained in:
@@ -18,6 +18,7 @@ export interface IJournalReportQuery {
|
||||
|
||||
export interface IJournalReportEntriesGroup {
|
||||
id: string;
|
||||
dateFormatted: string;
|
||||
entries: IJournalEntry[];
|
||||
currencyCode: string;
|
||||
credit: number;
|
||||
@@ -41,5 +42,10 @@ export interface IJournalTable extends IFinancialTable {
|
||||
meta: IJournalSheetMeta;
|
||||
}
|
||||
|
||||
export type IJournalTableData = IJournalReportEntriesGroup[];
|
||||
|
||||
export type IJournalTableData = IJournalReportEntriesGroup[];
|
||||
export interface IJournalSheet {
|
||||
data: IJournalTableData;
|
||||
query: IJournalReportQuery;
|
||||
meta: IJournalSheetMeta;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user