tango-app-ui-manage-tickets 3.7.0-beta.54 → 3.7.0-beta.57
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/audit-report-popup/audit-report-popup.component.mjs +6 -4
- package/esm2022/lib/components/audit-retag/audit-retag.component.mjs +25 -27
- package/esm2022/lib/components/custom-select/custom-select.component.mjs +16 -3
- package/esm2022/lib/components/remove-audit/remove-audit.component.mjs +4 -3
- package/esm2022/lib/components/start-audit/start-audit.component.mjs +84 -74
- package/esm2022/lib/components/ticket-filter-panel/ticket-filter-panel.component.mjs +5 -5
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +233 -18
- package/esm2022/lib/services/ticket.service.mjs +17 -3
- package/fesm2022/tango-app-ui-manage-tickets.mjs +382 -129
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/audit-metrics/audit-metrics.component.d.ts +1 -1
- package/lib/components/audit-report-popup/audit-report-popup.component.d.ts +1 -0
- package/lib/components/custom-select/custom-select.component.d.ts +1 -0
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +13 -2
- package/lib/services/ticket.service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -52,7 +52,7 @@ export declare class AuditMetricsComponent implements OnInit, OnDestroy {
|
|
|
52
52
|
openAftercount(value: any): void;
|
|
53
53
|
openView(): void;
|
|
54
54
|
openreTrigger(value: any): void;
|
|
55
|
-
statusBadge(value: any): "badge-light-
|
|
55
|
+
statusBadge(value: any): "badge-light-success" | "badge-light-warning" | "badge-light-primary";
|
|
56
56
|
sortData(value: any): void;
|
|
57
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuditMetricsComponent, never>;
|
|
58
58
|
static ɵcmp: i0.ɵɵComponentDeclaration<AuditMetricsComponent, "lib-audit-metrics", never, {}, {}, never, never, false, never>;
|
|
@@ -37,6 +37,7 @@ export declare class AuditReportPopupComponent implements OnInit, OnDestroy {
|
|
|
37
37
|
category: any;
|
|
38
38
|
centralOpsData: any;
|
|
39
39
|
tangoData: any;
|
|
40
|
+
tangoAccuracy: any;
|
|
40
41
|
constructor(modalService: NgbModal, activeModal: NgbActiveModal, service: TicketService, router: Router, timerService: TimerService, cd: ChangeDetectorRef, apiservice: AuditService, route: ActivatedRoute, toast: ToastService);
|
|
41
42
|
ngOnInit(): void;
|
|
42
43
|
setTimer(): void;
|
|
@@ -29,6 +29,7 @@ export declare class CustomSelectComponent implements OnChanges, OnInit {
|
|
|
29
29
|
emitSelectedValues(values: any[]): void;
|
|
30
30
|
checkIfAllSelected(): any;
|
|
31
31
|
onItemClick(item: any, event: MouseEvent): void;
|
|
32
|
+
getInitialsFromEmail(email?: string): string;
|
|
32
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomSelectComponent, never>;
|
|
33
34
|
static ɵcmp: i0.ɵɵComponentDeclaration<CustomSelectComponent, "team-select", never, { "items": { "alias": "items"; "required": false; }; "searchField": { "alias": "searchField"; "required": false; }; "multi": { "alias": "multi"; "required": false; }; "idField": { "alias": "idField"; "required": false; }; "selectedValues": { "alias": "selectedValues"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, { "selected": "selected"; }, never, never, false, never>;
|
|
34
35
|
}
|
|
@@ -35,11 +35,14 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
35
35
|
dayjs: typeof dayjs;
|
|
36
36
|
selectedDateRange: any;
|
|
37
37
|
arrowshow: boolean;
|
|
38
|
+
accuracyList: any;
|
|
39
|
+
selectedIssue: any;
|
|
40
|
+
selectedsubIssue: any;
|
|
38
41
|
isCustomDate: (m: dayjs.Dayjs) => false | "invalid-date";
|
|
39
42
|
tooltip: MatTooltip;
|
|
40
43
|
footfallcount: any;
|
|
41
|
-
disableAudit: boolean;
|
|
42
44
|
internalticket: any;
|
|
45
|
+
closeacuuracyissue: any;
|
|
43
46
|
clientData: any;
|
|
44
47
|
ngOnInit(): void;
|
|
45
48
|
viewTicket(type: any): void;
|
|
@@ -47,6 +50,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
47
50
|
private hasReviewDecision;
|
|
48
51
|
selectedRole: 'approver' | 'reviewer' | '';
|
|
49
52
|
statusVal: any;
|
|
53
|
+
dueDate: any;
|
|
50
54
|
getHeaderStatus(): any;
|
|
51
55
|
approverClosed: any;
|
|
52
56
|
getCurrentRoleMapping(): any;
|
|
@@ -75,7 +79,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
75
79
|
sortableColumns: string[];
|
|
76
80
|
generateColumns(firstRow: any): void;
|
|
77
81
|
formatColumnName(key: string): string;
|
|
78
|
-
detectColumnType(key: string): "
|
|
82
|
+
detectColumnType(key: string): "text" | "status" | "date" | "store";
|
|
79
83
|
currentPage: any;
|
|
80
84
|
pageSize: any;
|
|
81
85
|
onPageChange(pageOffset: number): void;
|
|
@@ -165,6 +169,8 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
165
169
|
closePopup: ElementRef;
|
|
166
170
|
stopReview(): void;
|
|
167
171
|
ticketView(data?: any): void;
|
|
172
|
+
accuracyReasons(): void;
|
|
173
|
+
oncloseSubmit(): void;
|
|
168
174
|
dataStoreView(data?: any): void;
|
|
169
175
|
footfallTicketsData: any[];
|
|
170
176
|
selectedByType: any;
|
|
@@ -239,6 +245,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
239
245
|
showTangoDetails: boolean;
|
|
240
246
|
toggleRevisedDetails(mapping: any): void;
|
|
241
247
|
reviwerList: any;
|
|
248
|
+
reviewrReassignApi(): void;
|
|
242
249
|
reviewrApi(): void;
|
|
243
250
|
reviewerChange(event: any): void;
|
|
244
251
|
assignTicketView(): void;
|
|
@@ -270,6 +277,10 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
270
277
|
getIconType(): void;
|
|
271
278
|
onFilterPanelClosed(): void;
|
|
272
279
|
onFilterApply(filters: any): void;
|
|
280
|
+
revFilter: 'all' | 'accept' | 'reject' | 'pending';
|
|
281
|
+
onFilterChange(): any;
|
|
282
|
+
private getItemStatus;
|
|
283
|
+
matchesStatusFilter(item: any): boolean;
|
|
273
284
|
static ɵfac: i0.ɵɵFactoryDeclaration<TicketFootfallNewComponent, never>;
|
|
274
285
|
static ɵcmp: i0.ɵɵComponentDeclaration<TicketFootfallNewComponent, "lib-ticket-footfall-new", never, {}, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
275
286
|
}
|
|
@@ -39,10 +39,12 @@ export declare class TicketService {
|
|
|
39
39
|
checkTicketExists(data: any): Observable<Object>;
|
|
40
40
|
mergeticket(data: any): Observable<Object>;
|
|
41
41
|
getDataMismathList(data: any): Observable<any>;
|
|
42
|
+
accuracyReasonsupdate(data: any): Observable<any>;
|
|
42
43
|
exportDataMismatchList(data: any): Observable<ArrayBuffer>;
|
|
43
44
|
getAuditImages(data: any): Observable<Object>;
|
|
44
45
|
ExportAuditImagesasxlsx(data: any): Observable<ArrayBuffer>;
|
|
45
|
-
getTicketSummaryApi(client: any, fromDate: any, toDate: any, tangoType: any): Observable<any>;
|
|
46
|
+
getTicketSummaryApi(client: any, fromDate: any, toDate: any, tangoType: any, permissionType?: string | null): Observable<any>;
|
|
47
|
+
accuracyReasons(client: any): Observable<any>;
|
|
46
48
|
getTicketListOldApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any): Observable<any>;
|
|
47
49
|
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
50
|
filterByStatus: any[];
|