Compare commits
	
		
			2 Commits
		
	
	
		
			ddc7f97e27
			...
			e64fbfd014
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| e64fbfd014 | |||
| 8cd7b85de2 | 
@@ -114,7 +114,8 @@ export class ItemService {
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  getChildItemList(parentcode: string, itemType?: string, dataFilter?: any, level = 1, deep = true,
 | 
			
		||||
                   startDate?: Date, endDate?: Date, skip?: number, take?: number): Observable<IItem[]> {
 | 
			
		||||
                   startDate?: Date, endDate?: Date, skip?: number, take?: number,
 | 
			
		||||
                   exactMatchStartOrEndDate?: boolean): Observable<IItem[]> {
 | 
			
		||||
    let params = new HttpParams();
 | 
			
		||||
    if(itemType != null) {
 | 
			
		||||
      params = params.append("it", itemType);
 | 
			
		||||
@@ -126,13 +127,15 @@ export class ItemService {
 | 
			
		||||
    params = params.append("deep", deep.toString());
 | 
			
		||||
    if (startDate) params = params.append("sDate", startDate.toISOString());
 | 
			
		||||
    if (endDate) params = params.append("eDate", endDate.toISOString());
 | 
			
		||||
    if(exactMatchStartOrEndDate) params = params.append("exactMatchStartOrEndDate", exactMatchStartOrEndDate);  
 | 
			
		||||
    
 | 
			
		||||
    if(skip) params = params.append("skip", skip);
 | 
			
		||||
    if(take) params = params.append("take", take);
 | 
			
		||||
    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): Observable<number> {
 | 
			
		||||
  getChildItemListCount(parentcode: string, itemType?: string,dataFilter?: any,
 | 
			
		||||
                        startDate?: Date, endDate?: Date, exactMatchStartOrEndDate?: boolean): Observable<number> {
 | 
			
		||||
    let params = new HttpParams();
 | 
			
		||||
    if(itemType != null) {
 | 
			
		||||
      params = params.append("it", itemType);
 | 
			
		||||
@@ -142,6 +145,7 @@ export class ItemService {
 | 
			
		||||
    }
 | 
			
		||||
    if (startDate) params = params.append("sDate", startDate.toISOString());
 | 
			
		||||
    if (endDate) params = params.append("eDate", endDate.toISOString());
 | 
			
		||||
    if(exactMatchStartOrEndDate) params = params.append("exactMatchStartOrEndDate", exactMatchStartOrEndDate);  
 | 
			
		||||
    return this.httpClient.get<number>(`${this.ApiEndpoint()}/api/v1/items/${parentcode}/children/count`, { params: params });
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user