Merge remote-tracking branch 'origin/feature/exchange_rates'

This commit is contained in:
Ahmed Bouhuolia
2020-05-12 01:10:11 +02:00
62 changed files with 2587 additions and 1155 deletions

View File

@@ -1,17 +1,17 @@
export default [
{
divider: true
divider: true,
},
{
icon: 'homepage',
iconSize: 20,
text: 'Homepage',
disabled: false,
href: '/dashboard/homepage'
href: '/dashboard/homepage',
},
{
divider: true
divider: true,
},
{
icon: 'homepage',
@@ -20,20 +20,20 @@ export default [
children: [
{
text: 'Items List',
href: '/dashboard/items'
href: '/dashboard/items',
},
{
text: 'New Item',
href: '/dashboard/items/new'
href: '/dashboard/items/new',
},
{
text: 'Category List',
href: '/dashboard/items/categories'
href: '/dashboard/items/categories',
},
]
],
},
{
divider: true
divider: true,
},
{
icon: 'balance-scale',
@@ -42,29 +42,33 @@ export default [
children: [
{
text: 'Accounts Chart',
href: '/dashboard/accounts'
href: '/dashboard/accounts',
},
{
text: 'Manual Journal',
href: '/dashboard/accounting/manual-journals'
href: '/dashboard/accounting/manual-journals',
},
{
text: 'Make Journal',
href: '/dashboard/accounting/make-journal-entry'
href: '/dashboard/accounting/make-journal-entry',
},
]
{
text: 'Exchange Rate',
href: '/dashboard/ExchangeRates',
},
],
},
{
icon: 'university',
iconSize: 20,
text: 'Banking',
children: []
children: [],
},
{
icon: 'shopping-cart',
iconSize: 20,
text: 'Sales',
children: []
children: [],
},
{
icon: 'balance-scale',
@@ -75,9 +79,9 @@ export default [
icon: 'cut',
text: 'cut',
label: '⌘C',
disabled: false
}
]
disabled: false,
},
],
},
{
icon: 'analytics',
@@ -86,25 +90,25 @@ export default [
children: [
{
text: 'Balance Sheet',
href: '/dashboard/accounting/balance-sheet'
href: '/dashboard/accounting/balance-sheet',
},
{
text: 'Trial Balance Sheet',
href: '/dashboard/accounting/trial-balance-sheet'
href: '/dashboard/accounting/trial-balance-sheet',
},
{
text: 'Journal',
href: '/dashboard/accounting/journal-sheet'
href: '/dashboard/accounting/journal-sheet',
},
{
text: 'General Ledger',
href: '/dashboard/accounting/general-ledger'
href: '/dashboard/accounting/general-ledger',
},
{
text: 'Profit Loss Sheet',
href: '/dashboard/accounting/profit-loss-sheet'
}
]
href: '/dashboard/accounting/profit-loss-sheet',
},
],
},
{
text: 'Expenses',
@@ -113,23 +117,23 @@ export default [
children: [
{
text: 'Expenses List',
href: '/dashboard/expenses'
href: '/dashboard/expenses',
},
{
text: 'New Expenses',
href: '/dashboard/expenses/new'
}
]
href: '/dashboard/expenses/new',
},
],
},
{
divider: true
divider: true,
},
{
text: 'Preferences',
href: '/dashboard/preferences'
href: '/dashboard/preferences',
},
{
text: 'Auditing System',
href: '/dashboard/auditing/list'
}
href: '/dashboard/auditing/list',
},
];