2022-05-16 10:10:35 +00:00
|
|
|
import { BalanceSheet } from './BalanceSheet/BalanceSheet';
|
2022-05-12 10:04:37 +00:00
|
|
|
import { GeneralLedger } from './GeneralLedger/GeneralLedger';
|
2022-05-17 12:12:57 +00:00
|
|
|
import { GSTR1 } from './GoodsAndServiceTax/GSTR1';
|
|
|
|
import { GSTR2 } from './GoodsAndServiceTax/GSTR2';
|
2022-05-15 18:48:57 +00:00
|
|
|
import { ProfitAndLoss } from './ProfitAndLoss/ProfitAndLoss';
|
2022-05-16 13:01:58 +00:00
|
|
|
import { TrialBalance } from './TrialBalance/TrialBalance';
|
2023-06-13 08:07:39 +00:00
|
|
|
import { StockBalance } from './inventory/StockBalance';
|
|
|
|
import { StockLedger } from './inventory/StockLedger';
|
2022-05-15 18:48:57 +00:00
|
|
|
|
2022-05-16 13:01:58 +00:00
|
|
|
export const reports = {
|
|
|
|
GeneralLedger,
|
|
|
|
ProfitAndLoss,
|
|
|
|
BalanceSheet,
|
|
|
|
TrialBalance,
|
2022-05-17 12:12:57 +00:00
|
|
|
GSTR1,
|
|
|
|
GSTR2,
|
2022-11-03 14:55:08 +00:00
|
|
|
StockLedger,
|
2022-11-25 09:21:58 +00:00
|
|
|
StockBalance,
|
2023-06-13 03:30:50 +00:00
|
|
|
} as const;
|