2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00
books/reports/view.js

20 lines
922 B
JavaScript
Raw Normal View History

import BalanceSheetViewConfig from './BalanceSheet/viewConfig';
2022-03-23 06:47:13 +00:00
import GeneralLedgerViewConfig from './GeneralLedger/viewConfig';
2021-12-02 08:34:26 +00:00
import GoodsAndServiceTaxGSTR1View from './GoodsAndServiceTax/GSTR1View';
import GoodsAndServiceTaxGSTR2View from './GoodsAndServiceTax/GSTR2View';
2022-03-23 06:47:13 +00:00
import ProfitAndLossViewConfig from './ProfitAndLoss/viewConfig';
import PurchaseRegisterViewConfig from './PurchaseRegister/viewConfig';
import SalesRegisterViewConfig from './SalesRegister/viewConfig';
import TrialBalanceViewConfig from './TrialBalance/viewConfig';
export default {
2022-03-23 06:47:13 +00:00
'general-ledger': GeneralLedgerViewConfig,
'sales-register': SalesRegisterViewConfig,
'purchase-register': PurchaseRegisterViewConfig,
'balance-sheet': BalanceSheetViewConfig,
'profit-and-loss': ProfitAndLossViewConfig,
'trial-balance': TrialBalanceViewConfig,
'gstr-1': GoodsAndServiceTaxGSTR1View,
'gstr-2': GoodsAndServiceTaxGSTR2View,
};