Fix: ProductLedger was crapping out because of ambiguous join in opening balace. (Probably triggered by upgrade in sqlalchemy)
Chore: Updated the dev dependencies as Angular 7 does not support Typescript 3.2 and further
This commit is contained in:
@ -20,8 +20,8 @@ export class LedgerService {
|
||||
constructor(private http: HttpClient, private log: ErrorLoggerService) {
|
||||
}
|
||||
|
||||
list(date: string, startDate: string, finishDate): Observable<Ledger> {
|
||||
const listUrl = (date === null) ? url : `${url}/${date}`;
|
||||
list(id: string, startDate: string, finishDate): Observable<Ledger> {
|
||||
const listUrl = (id === null) ? url : `${url}/${id}`;
|
||||
const options = {params: new HttpParams()};
|
||||
if (startDate !== null) {
|
||||
options.params = options.params.set('s', startDate);
|
||||
|
||||
Reference in New Issue
Block a user