Renamed Report permissions to make more sense

Removed the void and reprints report and added it to the bill settlement report
updated the import to add a new sql to be executed later to update the settlements and report permission names
Export works on all reports
This commit is contained in:
Amritanshu
2019-08-25 15:08:59 +05:30
parent 05860fb0b9
commit 6d0f30503a
98 changed files with 527 additions and 1079 deletions

View File

@ -0,0 +1,55 @@
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 { CashierReport } from './cashier-report';
import { ErrorLoggerService } from '../core/error-logger.service';
import { User } from '../core/user';
const httpOptions = {
headers: new HttpHeaders({'Content-Type': 'application/json'})
};
const url = '/v1/cashier-report';
const urlActiveCashiers = '/v1/active-cashiers';
const serviceName = 'CashierReportService';
@Injectable({
providedIn: 'root'
})
export class CashierReportService {
constructor(private http: HttpClient, private log: ErrorLoggerService) {
}
list(id: string, startDate: string, finishDate): Observable<CashierReport> {
const listUrl = (id === null) ? url : `${url}/${id}`;
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<CashierReport>>this.http.get<CashierReport>(listUrl, options)
.pipe(
catchError(this.log.handleError(serviceName, 'list'))
);
}
activeCashiers(startDate: string, finishDate): Observable<User[]> {
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<User[]>>this.http.get<User[]>(urlActiveCashiers, options)
.pipe(
catchError(this.log.handleError(serviceName, 'activeCashiers'))
);
}
}