2021-11-04 10:31:26 +00:00
|
|
|
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';
|
2021-12-02 08:34:26 +00:00
|
|
|
import GoodsAndServiceTaxGSTR1View from './GoodsAndServiceTax/GSTR1View';
|
|
|
|
import GoodsAndServiceTaxGSTR2View from './GoodsAndServiceTax/GSTR2View';
|
2021-11-04 10:31:26 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
'general-ledger' : GeneralLedgerViewConfig,
|
|
|
|
'sales-register' : SalesRegisterViewConfig,
|
|
|
|
'purchase-register' : PurchaseRegisterViewConfig,
|
|
|
|
'balance-sheet' : BalanceSheetViewConfig,
|
|
|
|
'profit-and-loss' : ProfitAndLossViewConfig,
|
|
|
|
'trial-balance' : TrialBalanceViewConfig,
|
|
|
|
// 'bank-reconciliation' : BankReconciliationViewConfig,
|
2021-12-02 08:34:26 +00:00
|
|
|
'gstr-1' : GoodsAndServiceTaxGSTR1View,
|
|
|
|
'gstr-2' : GoodsAndServiceTaxGSTR2View,
|
2019-07-30 12:02:49 +00:00
|
|
|
};
|