feat: keyboardshortcuts dialog.

This commit is contained in:
elforjani3
2021-02-25 18:30:20 +02:00
parent 0842473bf4
commit 464b31564e
8 changed files with 256 additions and 0 deletions

View File

@@ -0,0 +1,102 @@
export default [
{
shortcut_key: 'Shift + I',
description: 'Jump to the invoices.',
},
{
shortcut_key: 'Shift + E',
description: 'Jump to the estimates.',
},
{
shortcut_key: 'Shift + R',
description: 'Jump to the receipts.',
},
{
shortcut_key: 'Shift + X',
description: 'Jump to the expenses.',
},
{
shortcut_key: 'Shift + C',
description: 'Jump to the customers.',
},
{
shortcut_key: 'Shift + V',
description: 'Jump to the vendors.',
},
{
shortcut_key: 'Shift + A',
description: 'Jump to the Chart of Accounts.',
},
{
shortcut_key: 'Shift + B',
description: 'Jump to the bills.',
},
{
shortcut_key: 'Shift + M',
description: 'Jump to the Manual Journals.',
},
{
shortcut_key: 'Shift + W',
description: 'Jump to the items.',
},
{
shortcut_key: 'Shift + 1',
description: 'Jump to the Balance Sheet.',
},
{
shortcut_key: 'Shift + 2',
description: 'Jump to the Profit Loss Sheet.',
},
{
shortcut_key: 'Shift + 3',
description: 'Jump to the Journal Sheet.',
},
{
shortcut_key: 'Shift + 4',
description: 'Jump to the General Ledger Sheet.',
},
{
shortcut_key: 'Shift + 5',
description: 'Jump to the Trial Balance Sheet.',
},
{
shortcut_key: 'Ctrl + Shift + I ',
description: 'Create a new invoice .',
},
{
shortcut_key: 'Ctrl + Shift + E ',
description: 'Create a new estimate .',
},
{
shortcut_key: 'Ctrl + Shift + R ',
description: 'Create a new receipt .',
},
{
shortcut_key: 'Ctrl + Shift + X ',
description: 'Create a new expense.',
},
{
shortcut_key: 'Ctrl + Shift + C ',
description: 'Create a new customer.',
},
{
shortcut_key: 'Ctrl + Shift + V ',
description: 'Create a new vendor.',
},
{
shortcut_key: 'Ctrl + Shift + B ',
description: 'Create a new bill.',
},
{
shortcut_key: 'Ctrl + Shift + M ',
description: 'Create a new Make Journal.',
},
{
shortcut_key: 'Ctrl + Shift + W ',
description: 'Create a new item.',
},
{
shortcut_key: 'Ctrl + / ',
description: 'Close and open sidebar .',
},
];