feat(FinancialReports): compute journal cost is running state.

This commit is contained in:
a.bouhuolia
2021-03-13 19:49:15 +02:00
parent 828f4bb32e
commit 88eaaa3968
27 changed files with 411 additions and 106 deletions

View File

@@ -54,4 +54,10 @@ export interface IProfitLossSheetStatement {
netIncome: IProfitLossSheetTotalSection;
operatingProfit: IProfitLossSheetTotalSection;
grossProfit: IProfitLossSheetTotalSection;
};
};
export interface IProfitLossSheetMeta {
isCostComputeRunning: boolean,
organizationName: string,
baseCurrency: string,
}