@apptimate/core-lib 2.3.0 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/constants/menus.ts +6 -6
package/package.json
CHANGED
package/src/constants/menus.ts
CHANGED
|
@@ -108,7 +108,6 @@ export const MENU_ITEM_REGISTRY: RegistryItem[] = [
|
|
|
108
108
|
// ── Finance Module ──
|
|
109
109
|
{ key: 'finance__invoices', label: 'Invoices', path: '/finance/invoices', module: 'Finance', defaultGroup: 'Transactions' },
|
|
110
110
|
{ key: 'finance__payments', label: 'Payments', path: '/finance/payments', module: 'Finance', defaultGroup: 'Transactions' },
|
|
111
|
-
{ key: 'finance__party_transactions', label: 'Party Transactions', path: '/finance/party-transactions', module: 'Finance', defaultGroup: 'Transactions' },
|
|
112
111
|
{ key: 'finance__chart_of_accounts', label: 'Chart of Accounts', path: '/finance/chart-of-accounts', module: 'Finance', defaultGroup: 'Accounting' },
|
|
113
112
|
{ key: 'finance__journal_entries', label: 'Journal Entries', path: '/finance/journal-entries', module: 'Finance', defaultGroup: 'Accounting' },
|
|
114
113
|
{ key: 'finance__fiscal_years', label: 'Fiscal Years', path: '/finance/fiscal-years', module: 'Finance', defaultGroup: 'Accounting' },
|
|
@@ -120,8 +119,9 @@ export const MENU_ITEM_REGISTRY: RegistryItem[] = [
|
|
|
120
119
|
{ key: 'finance__payment_modes', label: 'Payment Modes', path: '/finance/payment-modes', module: 'Finance', defaultGroup: 'Settings' },
|
|
121
120
|
{ key: 'finance__bank_accounts', label: 'Bank Accounts', path: '/finance/bank-accounts', module: 'Finance', defaultGroup: 'Settings' },
|
|
122
121
|
{ key: 'finance__account_mappings', label: 'Account Mappings', path: '/finance/account-mappings', module: 'Finance', defaultGroup: 'Settings' },
|
|
122
|
+
{ key: 'finance__opening_balances', label: 'Opening Balances', path: '/finance/opening-balances', module: 'Finance', defaultGroup: 'Settings' },
|
|
123
123
|
{ key: 'finance__transaction_ledger', label: 'Transaction Ledger', path: '/finance/transactions', module: 'Finance', defaultGroup: 'Transactions' },
|
|
124
|
-
{ key: 'finance__bank_statements', label: 'Bank Statements', path: '/finance/bank-statements', module: 'Finance', defaultGroup: '
|
|
124
|
+
{ key: 'finance__bank_statements', label: 'Bank Statements', path: '/finance/bank-statements', module: 'Finance', defaultGroup: 'Reports' },
|
|
125
125
|
|
|
126
126
|
// ── Jewelry Module ──
|
|
127
127
|
{ key: 'jewelry__items', label: 'Jewelry Items', path: '/jewelry/items', module: 'Jewelry', defaultGroup: 'Catalog' },
|
|
@@ -313,10 +313,10 @@ export const MENU_PRESETS: MenuPreset[] = [
|
|
|
313
313
|
label: 'Finance',
|
|
314
314
|
iconName: 'Wallet',
|
|
315
315
|
secondaryItems: [
|
|
316
|
-
'finance__invoices', 'finance__payments', '
|
|
316
|
+
'finance__invoices', 'finance__payments', 'finance__transaction_ledger',
|
|
317
317
|
'finance__chart_of_accounts', 'finance__journal_entries', 'finance__fiscal_years',
|
|
318
318
|
'finance__trial_balance', 'finance__profit_loss', 'finance__balance_sheet', 'finance__account_ledger', 'finance__party_statement',
|
|
319
|
-
'finance__payment_modes', 'finance__bank_accounts', 'finance__bank_statements', 'finance__account_mappings',
|
|
319
|
+
'finance__payment_modes', 'finance__bank_accounts', 'finance__bank_statements', 'finance__account_mappings', 'finance__opening_balances',
|
|
320
320
|
],
|
|
321
321
|
},
|
|
322
322
|
{
|
|
@@ -558,7 +558,6 @@ export const APP_MENUS: MainMenuItem[] = [
|
|
|
558
558
|
items: [
|
|
559
559
|
{ id: "invoices", label: "Invoices", path: "/finance/invoices" },
|
|
560
560
|
{ id: "payments", label: "Payments", path: "/finance/payments" },
|
|
561
|
-
{ id: "party_transactions", label: "Party Transactions", path: "/finance/party-transactions" },
|
|
562
561
|
{ id: "transaction_ledger", label: "Transaction Ledger", path: "/finance/transactions" },
|
|
563
562
|
],
|
|
564
563
|
},
|
|
@@ -580,6 +579,7 @@ export const APP_MENUS: MainMenuItem[] = [
|
|
|
580
579
|
{ id: "balance_sheet", label: "Balance Sheet", path: "/finance/reports/balance-sheet" },
|
|
581
580
|
{ id: "account_ledger", label: "Account Ledger", path: "/finance/reports/account-ledger" },
|
|
582
581
|
{ id: "party_statement", label: "Party Statement", path: "/finance/reports/party-statement" },
|
|
582
|
+
{ id: "bank_statements", label: "Bank Statements", path: "/finance/bank-statements" },
|
|
583
583
|
],
|
|
584
584
|
},
|
|
585
585
|
{
|
|
@@ -588,8 +588,8 @@ export const APP_MENUS: MainMenuItem[] = [
|
|
|
588
588
|
items: [
|
|
589
589
|
{ id: "payment_modes", label: "Payment Modes", path: "/finance/payment-modes" },
|
|
590
590
|
{ id: "bank_accounts", label: "Bank Accounts", path: "/finance/bank-accounts" },
|
|
591
|
-
{ id: "bank_statements", label: "Bank Statements", path: "/finance/bank-statements" },
|
|
592
591
|
{ id: "account_mappings", label: "Account Mappings", path: "/finance/account-mappings" },
|
|
592
|
+
{ id: "opening_balances", label: "Opening Balances", path: "/finance/opening-balances" },
|
|
593
593
|
],
|
|
594
594
|
},
|
|
595
595
|
],
|