tango-app-ui-manage-tickets 3.7.0-beta.51 → 3.7.0-beta.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/ticket-filter-panel/ticket-filter-panel.component.mjs +46 -5
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +23 -12
- package/esm2022/lib/services/ticket.service.mjs +37 -32
- package/fesm2022/tango-app-ui-manage-tickets.mjs +103 -46
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/ticket-filter-panel/ticket-filter-panel.component.d.ts +8 -1
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +3 -2
- package/lib/services/ticket.service.d.ts +8 -1
- package/package.json +1 -1
|
@@ -38,7 +38,14 @@ export declare class TicketFilterPanelComponent implements OnChanges {
|
|
|
38
38
|
get selectedStatuses(): string[];
|
|
39
39
|
isBetween(controlName: string): boolean;
|
|
40
40
|
ngOnChanges(changes: SimpleChanges): void;
|
|
41
|
-
userList: any;
|
|
41
|
+
userList: any[];
|
|
42
|
+
filteredReviewerList: any[];
|
|
43
|
+
reviewerSearchTerm: string;
|
|
44
|
+
initReviewerList(users: any[]): void;
|
|
45
|
+
onReviewerSearch(value: string): void;
|
|
46
|
+
approverSearchTerm: any;
|
|
47
|
+
get filteredApproverList(): any[];
|
|
48
|
+
onApproverSearch(value: string): void;
|
|
42
49
|
private loadReviewerList;
|
|
43
50
|
reviewerDropdownOpen: boolean;
|
|
44
51
|
approverDropdownOpen: boolean;
|
|
@@ -103,8 +103,6 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
103
103
|
StoresSearchValue: any;
|
|
104
104
|
sortedColumn1: string;
|
|
105
105
|
sortDirection1: number;
|
|
106
|
-
searchStoresData(): void;
|
|
107
|
-
sortValue(column: string): void;
|
|
108
106
|
openTicketsList: any[];
|
|
109
107
|
selectedStores: any[];
|
|
110
108
|
allSelected: boolean;
|
|
@@ -198,6 +196,9 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
198
196
|
resetSelections(): void;
|
|
199
197
|
cancel(): void;
|
|
200
198
|
openArrow(): void;
|
|
199
|
+
sortOpen: 1 | -1;
|
|
200
|
+
onSortClick(): void;
|
|
201
|
+
searchStoresData(): void;
|
|
201
202
|
getOpenTicketList(data?: any): void;
|
|
202
203
|
isLockedByReviewer(original: any): boolean;
|
|
203
204
|
isApproved1(original: any): boolean;
|
|
@@ -44,7 +44,14 @@ export declare class TicketService {
|
|
|
44
44
|
ExportAuditImagesasxlsx(data: any): Observable<ArrayBuffer>;
|
|
45
45
|
getTicketSummaryApi(client: any, fromDate: any, toDate: any, tangoType: any): Observable<any>;
|
|
46
46
|
getTicketListOldApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any): Observable<any>;
|
|
47
|
-
getTicketListApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any, tangoType: any, permissionType?:
|
|
47
|
+
getTicketListApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any, tangoType: any, permissionType?: string | null, filters?: {
|
|
48
|
+
filterByStatus: any[];
|
|
49
|
+
filterByReviewer: any | null;
|
|
50
|
+
filterByApprover: any | null;
|
|
51
|
+
filterByTango: any | null;
|
|
52
|
+
filterByReviewedBy: any[];
|
|
53
|
+
fileterByApprovedBy: any[];
|
|
54
|
+
}): Observable<any>;
|
|
48
55
|
getTicketListExportOldApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any): Observable<any>;
|
|
49
56
|
getTicketListExportApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any, tangoType: any, permissionType?: string | null, filters?: {
|
|
50
57
|
filterByStatus?: string[];
|