Compare commits
2 Commits
475c522039
...
b4a0a4584d
Author | SHA1 | Date | |
---|---|---|---|
b4a0a4584d | |||
8ab1611f39 |
@ -114,7 +114,7 @@ export class ItemService {
|
||||
|
||||
getChildItemList(parentcode: string, itemType?: string, dataFilter?: any, level = 1, deep = true,
|
||||
startDate?: Date, endDate?: Date, skip?: number, take?: number,
|
||||
exactMatchStartOrEndDate?: boolean, owner?:string): Observable<IItem[]> {
|
||||
exactMatchStartOrEndDate?: boolean, owner?:string, indexed?: boolean): Observable<IItem[]> {
|
||||
let params = new HttpParams();
|
||||
if(itemType != null) {
|
||||
params = params.append("it", itemType);
|
||||
@ -131,11 +131,13 @@ export class ItemService {
|
||||
|
||||
if(skip) params = params.append("skip", skip);
|
||||
if(take) params = params.append("take", take);
|
||||
if(indexed) params = params.append("ind",indexed?"true":"false");
|
||||
return this.httpClient.get<IItem[]>(`${this.ApiEndpoint()}/api/v1/items/${parentcode}/children`, { params: params });
|
||||
}
|
||||
|
||||
getChildItemListCount(parentcode: string, itemType?: string,dataFilter?: any,
|
||||
startDate?: Date, endDate?: Date, exactMatchStartOrEndDate?: boolean, owner?:string): Observable<number> {
|
||||
startDate?: Date, endDate?: Date, exactMatchStartOrEndDate?: boolean, owner?:string,
|
||||
indexed?: boolean): Observable<number> {
|
||||
let params = new HttpParams();
|
||||
if(itemType != null) {
|
||||
params = params.append("it", itemType);
|
||||
@ -147,6 +149,7 @@ export class ItemService {
|
||||
if (endDate) params = params.append("eDate", endDate.toISOString());
|
||||
if(exactMatchStartOrEndDate !== undefined) params = params.append("exactMatchStartOrEndDate", exactMatchStartOrEndDate);
|
||||
if(owner) params = params.append("owner", owner);
|
||||
if(indexed) params = params.append("ind",indexed?"true":"false");
|
||||
return this.httpClient.get<number>(`${this.ApiEndpoint()}/api/v1/items/${parentcode}/children/count`, { params: params });
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user