72044476a8
Lazy loaded everything TODO: The cash flow module when clicking on sub-links, it reloads the whole page, it needs to be diagnosed and fixed, this problem also exists in the other modules TODO: Rename folders and modules such as account to accounts to match the url
50 lines
1.1 KiB
TypeScript
50 lines
1.1 KiB
TypeScript
import {NgModule} from '@angular/core';
|
|
import {CommonModule} from '@angular/common';
|
|
import {RouterModule, Routes} from '@angular/router';
|
|
import {ProductLedgerResolver} from './product-ledger-resolver.service';
|
|
import {AuthGuard} from '../auth/auth-guard.service';
|
|
import {ProductLedgerComponent} from './product-ledger.component';
|
|
|
|
const productLedgerRoutes: Routes = [
|
|
{
|
|
path: '',
|
|
component: ProductLedgerComponent,
|
|
canActivate: [AuthGuard],
|
|
data: {
|
|
permission: 'Product Ledger'
|
|
},
|
|
resolve: {
|
|
info: ProductLedgerResolver
|
|
},
|
|
runGuardsAndResolvers: 'always'
|
|
},
|
|
{
|
|
path: ':id',
|
|
component: ProductLedgerComponent,
|
|
canActivate: [AuthGuard],
|
|
data: {
|
|
permission: 'Product Ledger'
|
|
},
|
|
resolve: {
|
|
info: ProductLedgerResolver
|
|
},
|
|
runGuardsAndResolvers: 'always'
|
|
}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
RouterModule.forChild(productLedgerRoutes)
|
|
|
|
],
|
|
exports: [
|
|
RouterModule
|
|
],
|
|
providers: [
|
|
ProductLedgerResolver
|
|
]
|
|
})
|
|
export class ProductLedgerRoutingModule {
|
|
}
|