Files
barker/bookie/src/app/product-sale-report/product-sale-report-resolver.service.ts
tanshu d677cfb1ea Blacked and isorted the python files
Prettied and eslinted the typescript/html files
2020-10-11 10:56:29 +05:30

20 lines
742 B
TypeScript

import { Injectable } from '@angular/core';
import { ActivatedRouteSnapshot, Resolve } from '@angular/router';
import { Observable } from 'rxjs/internal/Observable';
import { ProductSaleReport } from './product-sale-report';
import { ProductSaleReportService } from './product-sale-report.service';
@Injectable({
providedIn: 'root',
})
export class ProductSaleReportResolver implements Resolve<ProductSaleReport> {
constructor(private ser: ProductSaleReportService) {}
resolve(route: ActivatedRouteSnapshot): Observable<ProductSaleReport> {
const startDate = route.queryParamMap.get('startDate') || null;
const finishDate = route.queryParamMap.get('finishDate') || null;
return this.ser.get(startDate, finishDate);
}
}