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';
|
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-05-16 13:01:58 +00:00
|
|
|
};
|