Discount Report Done

This commit is contained in:
Amritanshu
2019-08-21 12:31:52 +05:30
parent 8f6c5930ee
commit 2b04b624b3
18 changed files with 456 additions and 28 deletions

View File

@ -0,0 +1,36 @@
import { Injectable } from '@angular/core';
import { catchError } from 'rxjs/operators';
import { Observable } from 'rxjs/internal/Observable';
import { HttpClient, HttpHeaders, HttpParams } from '@angular/common/http';
import { DiscountReport } from './discount-report';
import { ErrorLoggerService } from '../core/error-logger.service';
const httpOptions = {
headers: new HttpHeaders({'Content-Type': 'application/json'})
};
const url = '/v1/discount-report';
const serviceName = 'DiscountReportService';
@Injectable({
providedIn: 'root'
})
export class DiscountReportService {
constructor(private http: HttpClient, private log: ErrorLoggerService) {
}
get(startDate: string, finishDate): Observable<DiscountReport> {
const options = {params: new HttpParams()};
if (startDate !== null) {
options.params = options.params.set('s', startDate);
}
if (finishDate !== null) {
options.params = options.params.set('f', finishDate);
}
return <Observable<DiscountReport>>this.http.get<DiscountReport>(url, options)
.pipe(
catchError(this.log.handleError(serviceName, 'get'))
);
}
}