tango-app-ui-manage-tickets 3.7.0-beta.52 → 3.7.0-beta.54
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 +70 -16
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +27 -42
- package/esm2022/lib/services/ticket.service.mjs +37 -32
- package/fesm2022/tango-app-ui-manage-tickets.mjs +131 -88
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/ticket-filter-panel/ticket-filter-panel.component.d.ts +10 -1
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +4 -2
- package/lib/services/ticket.service.d.ts +8 -1
- package/package.json +1 -1
|
@@ -23,6 +23,7 @@ export declare class TicketFilterPanelComponent implements OnChanges {
|
|
|
23
23
|
}[];
|
|
24
24
|
filterForm: FormGroup;
|
|
25
25
|
constructor(fb: FormBuilder, eRef: ElementRef, service: TicketService);
|
|
26
|
+
limitValue(event: any, controlName: string): void;
|
|
26
27
|
get isTango(): boolean;
|
|
27
28
|
get showReviewerAccuracy(): boolean;
|
|
28
29
|
get showReviewedBy(): boolean;
|
|
@@ -38,7 +39,15 @@ export declare class TicketFilterPanelComponent implements OnChanges {
|
|
|
38
39
|
get selectedStatuses(): string[];
|
|
39
40
|
isBetween(controlName: string): boolean;
|
|
40
41
|
ngOnChanges(changes: SimpleChanges): void;
|
|
41
|
-
userList: any;
|
|
42
|
+
userList: any[];
|
|
43
|
+
reviewerSearchTerm: string;
|
|
44
|
+
get filteredReviewerList(): {
|
|
45
|
+
email: string;
|
|
46
|
+
name?: string;
|
|
47
|
+
}[];
|
|
48
|
+
approverSearchTerm: any;
|
|
49
|
+
get filteredApproverList(): any[];
|
|
50
|
+
onApproverSearch(value: string): void;
|
|
42
51
|
private loadReviewerList;
|
|
43
52
|
reviewerDropdownOpen: boolean;
|
|
44
53
|
approverDropdownOpen: boolean;
|
|
@@ -40,6 +40,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
40
40
|
footfallcount: any;
|
|
41
41
|
disableAudit: boolean;
|
|
42
42
|
internalticket: any;
|
|
43
|
+
clientData: any;
|
|
43
44
|
ngOnInit(): void;
|
|
44
45
|
viewTicket(type: any): void;
|
|
45
46
|
private areAllItemsReviewed;
|
|
@@ -103,8 +104,6 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
103
104
|
StoresSearchValue: any;
|
|
104
105
|
sortedColumn1: string;
|
|
105
106
|
sortDirection1: number;
|
|
106
|
-
searchStoresData(): void;
|
|
107
|
-
sortValue(column: string): void;
|
|
108
107
|
openTicketsList: any[];
|
|
109
108
|
selectedStores: any[];
|
|
110
109
|
allSelected: boolean;
|
|
@@ -198,6 +197,9 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
198
197
|
resetSelections(): void;
|
|
199
198
|
cancel(): void;
|
|
200
199
|
openArrow(): void;
|
|
200
|
+
sortOpen: 1 | -1;
|
|
201
|
+
onSortClick(): void;
|
|
202
|
+
searchStoresData(): void;
|
|
201
203
|
getOpenTicketList(data?: any): void;
|
|
202
204
|
isLockedByReviewer(original: any): boolean;
|
|
203
205
|
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[];
|