feat(server): balance sheet meta

This commit is contained in:
Ahmed Bouhuolia
2024-02-17 00:21:48 +02:00
parent 27fed5f18a
commit 7690789031
10 changed files with 89 additions and 48 deletions

View File

@@ -42,4 +42,12 @@ export enum ReportsAction {
export interface IFinancialSheetBranchesQuery {
branchesIds?: number[];
}
}
export interface IFinancialSheetCommonMeta {
organizationName: string;
baseCurrency: string;
dateFormat: string;
isCostComputeRunning: boolean;
sheetName: string;
}