@apptimate/core-lib 3.1.0 → 3.2.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 +2 -1
package/package.json
CHANGED
package/src/constants/menus.ts
CHANGED
|
@@ -111,6 +111,7 @@ export const MENU_ITEM_REGISTRY: RegistryItem[] = [
|
|
|
111
111
|
// ── Finance Module ──
|
|
112
112
|
{ key: 'finance__invoices', label: 'Invoices', path: '/finance/invoices', module: 'Finance', defaultGroup: 'Transactions', permission: null },
|
|
113
113
|
{ key: 'finance__payments', label: 'Payments', path: '/finance/payments', module: 'Finance', defaultGroup: 'Transactions', permission: null },
|
|
114
|
+
{ key: 'finance__direct_transactions', label: 'Direct Transactions', path: '/finance/direct-transactions', module: 'Finance', defaultGroup: 'Transactions', permission: null },
|
|
114
115
|
{ key: 'finance__chart_of_accounts', label: 'Chart of Accounts', path: '/finance/chart-of-accounts', module: 'Finance', defaultGroup: 'Accounting', permission: null },
|
|
115
116
|
{ key: 'finance__journal_entries', label: 'Journal Entries', path: '/finance/journal-entries', module: 'Finance', defaultGroup: 'Accounting', permission: null },
|
|
116
117
|
{ key: 'finance__fiscal_years', label: 'Fiscal Years', path: '/finance/fiscal-years', module: 'Finance', defaultGroup: 'Accounting', permission: null },
|
|
@@ -327,7 +328,7 @@ export const MENU_PRESETS: MenuPreset[] = [
|
|
|
327
328
|
label: 'Finance',
|
|
328
329
|
iconName: 'Wallet',
|
|
329
330
|
secondaryItems: [
|
|
330
|
-
'finance__invoices', 'finance__payments', 'finance__transaction_ledger',
|
|
331
|
+
'finance__invoices', 'finance__payments', 'finance__direct_transactions', 'finance__transaction_ledger',
|
|
331
332
|
'finance__chart_of_accounts', 'finance__journal_entries', 'finance__fiscal_years',
|
|
332
333
|
'finance__trial_balance', 'finance__profit_loss', 'finance__balance_sheet', 'finance__account_ledger', 'finance__party_statement',
|
|
333
334
|
'finance__payment_modes', 'finance__bank_accounts', 'finance__bank_statements', 'finance__account_mappings', 'finance__opening_balances',
|