diff --git a/projects/common/src/fm/services/item.service.ts b/projects/common/src/fm/services/item.service.ts index 8d08465..9edda48 100644 --- a/projects/common/src/fm/services/item.service.ts +++ b/projects/common/src/fm/services/item.service.ts @@ -116,7 +116,8 @@ 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, indexed?: boolean): Observable { + exactMatchStartOrEndDate?: boolean, owner?:string, indexed?: boolean, + atItemLocationItemCode?: string): Observable { let params = new HttpParams(); if(itemType != null) { params = params.append("it", itemType); @@ -134,6 +135,7 @@ 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"); + if(atItemLocationItemCode) params = params.append("ail",atItemLocationItemCode); return this.httpClient.get(`${this.ApiEndpoint()}/api/v1/items/${parentcode}/children`, { params: params }); }