2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/reports/view.js
2021-12-21 12:37:25 +05:30

22 lines
1.0 KiB
JavaScript

import GeneralLedgerViewConfig from './GeneralLedger/viewConfig';
import SalesRegisterViewConfig from './SalesRegister/viewConfig';
import PurchaseRegisterViewConfig from './PurchaseRegister/viewConfig';
import BalanceSheetViewConfig from './BalanceSheet/viewConfig';
import ProfitAndLossViewConfig from './ProfitAndLoss/viewConfig';
import TrialBalanceViewConfig from './TrialBalance/viewConfig';
// import BankReconciliationViewConfig from './BankReconciliation/viewConfig';
import GoodsAndServiceTaxGSTR1View from './GoodsAndServiceTax/GSTR1View';
import GoodsAndServiceTaxGSTR2View from './GoodsAndServiceTax/GSTR2View';
export default {
'general-ledger' : GeneralLedgerViewConfig,
'sales-register' : SalesRegisterViewConfig,
'purchase-register' : PurchaseRegisterViewConfig,
'balance-sheet' : BalanceSheetViewConfig,
'profit-and-loss' : ProfitAndLossViewConfig,
'trial-balance' : TrialBalanceViewConfig,
// 'bank-reconciliation' : BankReconciliationViewConfig,
'gstr-1' : GoodsAndServiceTaxGSTR1View,
'gstr-2' : GoodsAndServiceTaxGSTR2View,
};