Merge branch 'feature/manual-journals' of https://github.com/abouolia/Ratteb

This commit is contained in:
Ahmed Bouhuolia
2020-04-09 01:30:18 +02:00
27 changed files with 869 additions and 103 deletions

View File

@@ -67,7 +67,7 @@ export default [
},
{
path: `${BASE_URL}/accounting/manual-journal/:id`,
path: `${BASE_URL}/accounting/manual-journals/:id/edit`,
name: 'dashboard.manual.journal.edit',
component: LazyLoader({
loader: () =>
@@ -75,6 +75,15 @@ export default [
}),
},
{
path: `${BASE_URL}/accounting/manual-journals`,
component: LazyLoader({
loader: () =>
import('containers/Dashboard/Accounting/ManualJournalsTable')
}),
text: 'Manual Journals'
},
// Items
{
path: `${BASE_URL}/items/list`,
@@ -95,14 +104,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'
)
})
},
{