mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
feat(server): general ledger exporting to csv/xlsx
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import { IFinancialTable } from "./Table";
|
||||
|
||||
|
||||
export interface IGeneralLedgerSheetQuery {
|
||||
@@ -56,6 +57,8 @@ export interface IGeneralLedgerSheetAccount {
|
||||
closingBalance: IGeneralLedgerSheetAccountBalance,
|
||||
}
|
||||
|
||||
export type IGeneralLedgerSheetData = IGeneralLedgerSheetAccount[];
|
||||
|
||||
export interface IAccountTransaction {
|
||||
id: number,
|
||||
index: number,
|
||||
@@ -78,4 +81,9 @@ export interface IGeneralLedgerMeta {
|
||||
isCostComputeRunning: boolean,
|
||||
organizationName: string,
|
||||
baseCurrency: string,
|
||||
};
|
||||
};
|
||||
|
||||
export interface IGeneralLedgerTableData extends IFinancialTable {
|
||||
meta: IGeneralLedgerMeta;
|
||||
query: IGeneralLedgerSheetQuery;
|
||||
}
|
||||
Reference in New Issue
Block a user