2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 15:18:24 +00:00
books/reports/index.ts

21 lines
674 B
TypeScript
Raw Normal View History

2022-05-16 15:40:35 +05:30
import { BalanceSheet } from './BalanceSheet/BalanceSheet';
2022-05-12 15:34:37 +05:30
import { GeneralLedger } from './GeneralLedger/GeneralLedger';
2022-05-17 17:42:57 +05:30
import { GSTR1 } from './GoodsAndServiceTax/GSTR1';
import { GSTR2 } from './GoodsAndServiceTax/GSTR2';
2022-11-03 20:25:08 +05:30
import { StockLedger } from './inventory/StockLedger';
2022-11-25 14:51:58 +05:30
import { StockBalance } from './inventory/StockBalance';
import { ProfitAndLoss } from './ProfitAndLoss/ProfitAndLoss';
import { Report } from './Report';
2022-05-16 18:31:58 +05:30
import { TrialBalance } from './TrialBalance/TrialBalance';
2022-05-16 18:31:58 +05:30
export const reports = {
GeneralLedger,
ProfitAndLoss,
BalanceSheet,
TrialBalance,
2022-05-17 17:42:57 +05:30
GSTR1,
GSTR2,
2022-11-03 20:25:08 +05:30
StockLedger,
2022-11-25 14:51:58 +05:30
StockBalance,
} as Record<string, typeof Report>;