@apptimate/core-lib 2.4.0 → 2.6.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
CHANGED
package/src/constants/menus.ts
CHANGED
|
@@ -119,6 +119,7 @@ export const MENU_ITEM_REGISTRY: RegistryItem[] = [
|
|
|
119
119
|
{ key: 'finance__payment_modes', label: 'Payment Modes', path: '/finance/payment-modes', module: 'Finance', defaultGroup: 'Settings' },
|
|
120
120
|
{ key: 'finance__bank_accounts', label: 'Bank Accounts', path: '/finance/bank-accounts', module: 'Finance', defaultGroup: 'Settings' },
|
|
121
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' },
|
|
122
123
|
{ key: 'finance__transaction_ledger', label: 'Transaction Ledger', path: '/finance/transactions', module: 'Finance', defaultGroup: 'Transactions' },
|
|
123
124
|
{ key: 'finance__bank_statements', label: 'Bank Statements', path: '/finance/bank-statements', module: 'Finance', defaultGroup: 'Reports' },
|
|
124
125
|
|
|
@@ -315,7 +316,7 @@ export const MENU_PRESETS: MenuPreset[] = [
|
|
|
315
316
|
'finance__invoices', 'finance__payments', 'finance__transaction_ledger',
|
|
316
317
|
'finance__chart_of_accounts', 'finance__journal_entries', 'finance__fiscal_years',
|
|
317
318
|
'finance__trial_balance', 'finance__profit_loss', 'finance__balance_sheet', 'finance__account_ledger', 'finance__party_statement',
|
|
318
|
-
'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',
|
|
319
320
|
],
|
|
320
321
|
},
|
|
321
322
|
{
|
|
@@ -588,6 +589,7 @@ export const APP_MENUS: MainMenuItem[] = [
|
|
|
588
589
|
{ id: "payment_modes", label: "Payment Modes", path: "/finance/payment-modes" },
|
|
589
590
|
{ id: "bank_accounts", label: "Bank Accounts", path: "/finance/bank-accounts" },
|
|
590
591
|
{ id: "account_mappings", label: "Account Mappings", path: "/finance/account-mappings" },
|
|
592
|
+
{ id: "opening_balances", label: "Opening Balances", path: "/finance/opening-balances" },
|
|
591
593
|
],
|
|
592
594
|
},
|
|
593
595
|
],
|
|
@@ -10,5 +10,6 @@ export const cookie = {
|
|
|
10
10
|
|
|
11
11
|
export const local_storage = {
|
|
12
12
|
user_info: { name: 'user_info', secretName: 'USER_INFO_SECRET', encrypted: false } as IStorageOptions,
|
|
13
|
-
selected_organization: { name: 'selected_organization', secretName: 'SELECTED_ORG', encrypted: false } as IStorageOptions
|
|
13
|
+
selected_organization: { name: 'selected_organization', secretName: 'SELECTED_ORG', encrypted: false } as IStorageOptions,
|
|
14
|
+
sales_terminal: { name: 'sales_terminal', secretName: 'SALES_TERMINAL', encrypted: false } as IStorageOptions
|
|
14
15
|
};
|