@apptimate/core-lib 1.8.0 → 2.0.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 +9 -3
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
|
],
|
|
@@ -384,6 +387,7 @@ export const APP_MENUS: MainMenuItem[] = [
|
|
|
384
387
|
items: [
|
|
385
388
|
{ id: "warehouses", label: "Warehouses", path: "/warehouses" },
|
|
386
389
|
{ id: "terminals", label: "Terminals", path: "/terminals" },
|
|
390
|
+
{ id: "currencies", label: "Currencies", path: "/currencies" },
|
|
387
391
|
],
|
|
388
392
|
},
|
|
389
393
|
{
|
|
@@ -399,9 +403,9 @@ export const APP_MENUS: MainMenuItem[] = [
|
|
|
399
403
|
},
|
|
400
404
|
{
|
|
401
405
|
id: "core_settings",
|
|
402
|
-
label: "
|
|
406
|
+
label: "Configuration",
|
|
403
407
|
items: [
|
|
404
|
-
{ id: "
|
|
408
|
+
{ id: "currencies_settings", label: "Settings", path: "/settings" },
|
|
405
409
|
],
|
|
406
410
|
},
|
|
407
411
|
],
|
|
@@ -552,6 +556,7 @@ export const APP_MENUS: MainMenuItem[] = [
|
|
|
552
556
|
{ id: "profit_loss", label: "Profit & Loss", path: "/finance/reports/profit-loss" },
|
|
553
557
|
{ id: "balance_sheet", label: "Balance Sheet", path: "/finance/reports/balance-sheet" },
|
|
554
558
|
{ id: "account_ledger", label: "Account Ledger", path: "/finance/reports/account-ledger" },
|
|
559
|
+
{ id: "party_statement", label: "Party Statement", path: "/finance/reports/party-statement" },
|
|
555
560
|
],
|
|
556
561
|
},
|
|
557
562
|
{
|
|
@@ -631,6 +636,7 @@ export const APP_MENUS: MainMenuItem[] = [
|
|
|
631
636
|
{ id: "party_transactions", label: "Party Transactions", path: "/jewelry/party-transactions" },
|
|
632
637
|
{ id: "karigar_scrap_returns", label: "Karigar Dust Returns", path: "/jewelry/karigar-scrap-returns" },
|
|
633
638
|
{ id: "karigar_making_charges", label: "Making Charges", path: "/jewelry/karigar-making-charges" },
|
|
639
|
+
{ id: "party_metal_balances", label: "Party Metal Balances", path: "/jewelry/party-metal-balances" },
|
|
634
640
|
],
|
|
635
641
|
},
|
|
636
642
|
{
|