mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
3e466c647c
- get form to render - minor ui fixes
27 lines
1.1 KiB
TypeScript
27 lines
1.1 KiB
TypeScript
// import BalanceSheetViewConfig from './BalanceSheet/viewConfig';
|
|
// import GeneralLedgerViewConfig from './GeneralLedger/viewConfig';
|
|
// import GoodsAndServiceTaxGSTR1View from './GoodsAndServiceTax/GSTR1View';
|
|
// import GoodsAndServiceTaxGSTR2View from './GoodsAndServiceTax/GSTR2View';
|
|
// import ProfitAndLossViewConfig from './ProfitAndLoss/viewConfig';
|
|
// import PurchaseRegisterViewConfig from './PurchaseRegister/viewConfig';
|
|
// import SalesRegisterViewConfig from './SalesRegister/viewConfig';
|
|
// import TrialBalanceViewConfig from './TrialBalance/viewConfig';
|
|
|
|
// export default {
|
|
// '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,
|
|
// };
|
|
|
|
interface ReportView {
|
|
title: string;
|
|
method: string;
|
|
}
|
|
|
|
export default {} as Record<string, ReportView>;
|