WIP manual-journals

This commit is contained in:
elforjani3
2020-04-08 20:16:33 +02:00
parent 8ba96e7343
commit 5987e03682
14 changed files with 671 additions and 20 deletions

View File

@@ -65,6 +65,14 @@ export default [
}),
text: 'Make Journal Entry'
},
{
path: `${BASE_URL}/accounting/manual-journals`,
component: LazyLoader({
loader: () =>
import('containers/Dashboard/Accounting/ManualJournalsTable')
}),
text: 'Manual Journals'
},
// Items
{
@@ -86,14 +94,16 @@ export default [
loader: () => import('containers/Dashboard/Items/ItemsCategoryList')
})
},
,
// Financial Reports.
{
path: `${BASE_URL}/accounting/general-ledger`,
name: 'dashboard.accounting.general.ledger',
component: LazyLoader({
loader: () =>
import('containers/Dashboard/FinancialStatements/GeneralLedger/GeneralLedger')
import(
'containers/Dashboard/FinancialStatements/GeneralLedger/GeneralLedger'
)
})
},
{