2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/reports/index.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
601 B
TypeScript
Raw Normal View History

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-11-03 14:55:08 +00:00
import { StockLedger } from './inventory/StockLedger';
import { ProfitAndLoss } from './ProfitAndLoss/ProfitAndLoss';
import { Report } from './Report';
2022-05-16 13:01:58 +00:00
import { TrialBalance } from './TrialBalance/TrialBalance';
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,
} as Record<string, typeof Report>;