6be1dd5a3a
---- 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
20 lines
632 B
TypeScript
20 lines
632 B
TypeScript
import {Injectable} from '@angular/core';
|
|
import {ActivatedRouteSnapshot, Resolve, RouterStateSnapshot} from '@angular/router';
|
|
import {Observable} from 'rxjs/internal/Observable';
|
|
import {ClosingStock} from './closing-stock';
|
|
import {ClosingStockService} from './closing-stock.service';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class ClosingStockResolver implements Resolve<ClosingStock> {
|
|
|
|
constructor(private ser: ClosingStockService) {
|
|
}
|
|
|
|
resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<ClosingStock> {
|
|
const date = route.paramMap.get('date');
|
|
return this.ser.list(date);
|
|
}
|
|
}
|