Blacked and isorted the python files
Prettied and eslinted the typescript/html files
This commit is contained in:
@@ -1,18 +1,17 @@
|
||||
import {Injectable} from '@angular/core';
|
||||
import {ActivatedRouteSnapshot, Resolve, RouterStateSnapshot} from '@angular/router';
|
||||
import {Observable} from 'rxjs/internal/Observable';
|
||||
import {ProductSaleReport} from './product-sale-report';
|
||||
import {ProductSaleReportService} from './product-sale-report.service';
|
||||
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'
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class ProductSaleReportResolver implements Resolve<ProductSaleReport> {
|
||||
constructor(private ser: ProductSaleReportService) {}
|
||||
|
||||
constructor(private ser: ProductSaleReportService) {
|
||||
}
|
||||
|
||||
resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<ProductSaleReport> {
|
||||
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);
|
||||
|
||||
Reference in New Issue
Block a user