Files
bigcapital/client/src/config/sidebarMenu.js
2020-05-10 02:14:42 +02:00

136 lines
2.3 KiB
JavaScript

export default [
{
divider: true
},
{
icon: 'homepage',
iconSize: 20,
text: 'Homepage',
disabled: false,
href: '/dashboard/homepage'
},
{
divider: true
},
{
icon: 'homepage',
iconSize: 20,
text: 'Items',
children: [
{
text: 'Items List',
href: '/dashboard/items'
},
{
text: 'New Item',
href: '/dashboard/items/new'
},
{
text: 'Category List',
href: '/dashboard/items/categories'
},
]
},
{
divider: true
},
{
icon: 'balance-scale',
iconSize: 20,
text: 'Financial',
children: [
{
text: 'Accounts Chart',
href: '/dashboard/accounts'
},
{
text: 'Manual Journal',
href: '/dashboard/accounting/manual-journals'
},
{
text: 'Make Journal',
href: '/dashboard/accounting/make-journal-entry'
},
]
},
{
icon: 'university',
iconSize: 20,
text: 'Banking',
children: []
},
{
icon: 'shopping-cart',
iconSize: 20,
text: 'Sales',
children: []
},
{
icon: 'balance-scale',
iconSize: 20,
text: 'Purchases',
children: [
{
icon: 'cut',
text: 'cut',
label: '⌘C',
disabled: false
}
]
},
{
icon: 'analytics',
iconSize: 18,
text: 'Financial Reports',
children: [
{
text: 'Balance Sheet',
href: '/dashboard/accounting/balance-sheet'
},
{
text: 'Trial Balance Sheet',
href: '/dashboard/accounting/trial-balance-sheet'
},
{
text: 'Journal',
href: '/dashboard/accounting/journal-sheet'
},
{
text: 'General Ledger',
href: '/dashboard/accounting/general-ledger'
},
{
text: 'Profit Loss Sheet',
href: '/dashboard/accounting/profit-loss-sheet'
}
]
},
{
text: 'Expenses',
icon: 'receipt',
iconSize: 18,
children: [
{
text: 'Expenses List',
href: '/dashboard/expenses'
},
{
text: 'New Expenses',
href: '/dashboard/expenses/new'
}
]
},
{
divider: true
},
{
text: 'Preferences',
href: '/dashboard/preferences'
},
{
text: 'Auditing System',
href: '/dashboard/auditing/list'
}
];