@apptimate/core-lib 1.8.0 → 1.9.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 -1
package/package.json
CHANGED
package/src/constants/menus.ts
CHANGED
|
@@ -115,6 +115,7 @@ export const MENU_ITEM_REGISTRY: RegistryItem[] = [
|
|
|
115
115
|
{ key: 'finance__profit_loss', label: 'Profit & Loss', path: '/finance/reports/profit-loss', module: 'Finance', defaultGroup: 'Reports' },
|
|
116
116
|
{ key: 'finance__balance_sheet', label: 'Balance Sheet', path: '/finance/reports/balance-sheet', module: 'Finance', defaultGroup: 'Reports' },
|
|
117
117
|
{ key: 'finance__account_ledger', label: 'Account Ledger', path: '/finance/reports/account-ledger', module: 'Finance', defaultGroup: 'Reports' },
|
|
118
|
+
{ key: 'finance__party_statement', label: 'Party Statement', path: '/finance/reports/party-statement', module: 'Finance', defaultGroup: 'Reports' },
|
|
118
119
|
{ key: 'finance__payment_modes', label: 'Payment Modes', path: '/finance/payment-modes', module: 'Finance', defaultGroup: 'Settings' },
|
|
119
120
|
{ key: 'finance__bank_accounts', label: 'Bank Accounts', path: '/finance/bank-accounts', module: 'Finance', defaultGroup: 'Settings' },
|
|
120
121
|
{ key: 'finance__account_mappings', label: 'Account Mappings', path: '/finance/account-mappings', module: 'Finance', defaultGroup: 'Settings' },
|
|
@@ -142,6 +143,7 @@ export const MENU_ITEM_REGISTRY: RegistryItem[] = [
|
|
|
142
143
|
{ key: 'jewelry__party_transactions', label: 'Party Transactions', path: '/jewelry/party-transactions', module: 'Jewelry', defaultGroup: 'Karigar' },
|
|
143
144
|
{ key: 'jewelry__karigar_scrap_returns', label: 'Karigar Dust Returns', path: '/jewelry/karigar-scrap-returns', module: 'Jewelry', defaultGroup: 'Karigar' },
|
|
144
145
|
{ key: 'jewelry__karigar_making_charges', label: 'Making Charges', path: '/jewelry/karigar-making-charges', module: 'Jewelry', defaultGroup: 'Karigar' },
|
|
146
|
+
{ key: 'jewelry__party_metal_balances', label: 'Party Metal Balances', path: '/jewelry/party-metal-balances', module: 'Jewelry', defaultGroup: 'Karigar' },
|
|
145
147
|
{ key: 'jewelry__settings', label: 'Settings', path: '/jewelry/settings', module: 'Jewelry', defaultGroup: 'Configuration' },
|
|
146
148
|
{ key: 'jewelry__reports', label: 'Reports & Dashboards', path: '/reports/jewelry', module: 'Jewelry', defaultGroup: 'Analytics' },
|
|
147
149
|
|
|
@@ -296,7 +298,7 @@ export const MENU_PRESETS: MenuPreset[] = [
|
|
|
296
298
|
secondaryItems: [
|
|
297
299
|
'finance__invoices', 'finance__payments', 'finance__transaction_ledger',
|
|
298
300
|
'finance__chart_of_accounts', 'finance__journal_entries', 'finance__fiscal_years',
|
|
299
|
-
'finance__trial_balance', 'finance__profit_loss', 'finance__balance_sheet', 'finance__account_ledger',
|
|
301
|
+
'finance__trial_balance', 'finance__profit_loss', 'finance__balance_sheet', 'finance__account_ledger', 'finance__party_statement',
|
|
300
302
|
'finance__payment_modes', 'finance__bank_accounts', 'finance__bank_statements', 'finance__account_mappings',
|
|
301
303
|
],
|
|
302
304
|
},
|
|
@@ -314,6 +316,7 @@ export const MENU_PRESETS: MenuPreset[] = [
|
|
|
314
316
|
'jewelry__party_transactions',
|
|
315
317
|
'jewelry__karigar_scrap_returns',
|
|
316
318
|
'jewelry__karigar_making_charges',
|
|
319
|
+
'jewelry__party_metal_balances',
|
|
317
320
|
'jewelry__reports',
|
|
318
321
|
'jewelry__settings',
|
|
319
322
|
],
|
|
@@ -552,6 +555,7 @@ export const APP_MENUS: MainMenuItem[] = [
|
|
|
552
555
|
{ id: "profit_loss", label: "Profit & Loss", path: "/finance/reports/profit-loss" },
|
|
553
556
|
{ id: "balance_sheet", label: "Balance Sheet", path: "/finance/reports/balance-sheet" },
|
|
554
557
|
{ id: "account_ledger", label: "Account Ledger", path: "/finance/reports/account-ledger" },
|
|
558
|
+
{ id: "party_statement", label: "Party Statement", path: "/finance/reports/party-statement" },
|
|
555
559
|
],
|
|
556
560
|
},
|
|
557
561
|
{
|
|
@@ -631,6 +635,7 @@ export const APP_MENUS: MainMenuItem[] = [
|
|
|
631
635
|
{ id: "party_transactions", label: "Party Transactions", path: "/jewelry/party-transactions" },
|
|
632
636
|
{ id: "karigar_scrap_returns", label: "Karigar Dust Returns", path: "/jewelry/karigar-scrap-returns" },
|
|
633
637
|
{ id: "karigar_making_charges", label: "Making Charges", path: "/jewelry/karigar-making-charges" },
|
|
638
|
+
{ id: "party_metal_balances", label: "Party Metal Balances", path: "/jewelry/party-metal-balances" },
|
|
634
639
|
],
|
|
635
640
|
},
|
|
636
641
|
{
|