Moved to Angular 6.0
---- Pending * Table width for the points column in incentive * Linting * keyboard navigation where it was used earlier * can remove the unused totals calculated serverside in productledger * spinner and loading bars * Activate Guard for Employee Function tabs * Progress for Fingerprint uploads * deleted reconcile and receipe features as they were not being used * focus the right control on component load
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
import {NgModule} from '@angular/core';
|
||||
import {CommonModule} from '@angular/common';
|
||||
import {RouterModule, Routes} from '@angular/router';
|
||||
import {ClosingStockResolver} from './closing-stock-resolver.service';
|
||||
import {AuthGuard} from '../auth/auth-guard.service';
|
||||
import {ClosingStockComponent} from './closing-stock.component';
|
||||
|
||||
const closingStockRoutes: Routes = [
|
||||
{
|
||||
path: 'ClosingStock',
|
||||
component: ClosingStockComponent,
|
||||
canActivate: [AuthGuard],
|
||||
data: {
|
||||
permission: 'Closing Stock'
|
||||
},
|
||||
resolve: {
|
||||
info: ClosingStockResolver
|
||||
}
|
||||
},
|
||||
{
|
||||
path: 'ClosingStock/:date',
|
||||
component: ClosingStockComponent,
|
||||
canActivate: [AuthGuard],
|
||||
data: {
|
||||
permission: 'Closing Stock'
|
||||
},
|
||||
resolve: {
|
||||
info: ClosingStockResolver
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
RouterModule.forChild(closingStockRoutes)
|
||||
|
||||
],
|
||||
exports: [
|
||||
RouterModule
|
||||
],
|
||||
providers: [
|
||||
ClosingStockResolver
|
||||
]
|
||||
})
|
||||
export class ClosingStockRoutingModule {
|
||||
}
|
||||
Reference in New Issue
Block a user