tango-app-ui-manage-tickets 3.7.0-beta.42 → 3.7.0-beta.44
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 +40 -11
- package/esm2022/lib/components/audit-retag/audit-retag.component.mjs +16 -1
- package/esm2022/lib/components/start-audit/start-audit.component.mjs +11 -3
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +253 -169
- package/fesm2022/tango-app-ui-manage-tickets.mjs +310 -175
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/audit-report-popup/audit-report-popup.component.d.ts +5 -1
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +9 -5
- package/package.json +1 -1
|
@@ -5,10 +5,12 @@ import { ActivatedRoute, Router } from '@angular/router';
|
|
|
5
5
|
import { ToastService } from 'tango-app-ui-shared';
|
|
6
6
|
import { Subscription } from 'rxjs';
|
|
7
7
|
import { TimerService } from '../../services/timer.service';
|
|
8
|
+
import { TicketService } from '../../services/ticket.service';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class AuditReportPopupComponent implements OnInit, OnDestroy {
|
|
10
11
|
modalService: NgbModal;
|
|
11
12
|
activeModal: NgbActiveModal;
|
|
13
|
+
private service;
|
|
12
14
|
router: Router;
|
|
13
15
|
private timerService;
|
|
14
16
|
private cd;
|
|
@@ -33,7 +35,9 @@ export declare class AuditReportPopupComponent implements OnInit, OnDestroy {
|
|
|
33
35
|
subscription: Subscription | null;
|
|
34
36
|
formattedTime: string;
|
|
35
37
|
category: any;
|
|
36
|
-
|
|
38
|
+
centralOpsData: any;
|
|
39
|
+
tangoData: any;
|
|
40
|
+
constructor(modalService: NgbModal, activeModal: NgbActiveModal, service: TicketService, router: Router, timerService: TimerService, cd: ChangeDetectorRef, apiservice: AuditService, route: ActivatedRoute, toast: ToastService);
|
|
37
41
|
ngOnInit(): void;
|
|
38
42
|
setTimer(): void;
|
|
39
43
|
handleGlobalMouseEvent: () => void;
|
|
@@ -46,7 +46,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
46
46
|
private hasReviewDecision;
|
|
47
47
|
selectedRole: 'approver' | 'reviewer' | '';
|
|
48
48
|
statusVal: any;
|
|
49
|
-
getHeaderStatus():
|
|
49
|
+
getHeaderStatus(): any;
|
|
50
50
|
approverClosed: any;
|
|
51
51
|
getCurrentRoleMapping(): any;
|
|
52
52
|
datechange(event: any): void;
|
|
@@ -105,6 +105,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
105
105
|
get storeCount(): number;
|
|
106
106
|
isSelected(store: any): boolean;
|
|
107
107
|
toggleStoreSelection(store: any): void;
|
|
108
|
+
newallSelected: boolean;
|
|
108
109
|
toggleSelectAll(): void;
|
|
109
110
|
ticketViewChanges(store: any): void;
|
|
110
111
|
originalImage: any;
|
|
@@ -143,7 +144,10 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
143
144
|
addStoreIfNotExists(store: any): void;
|
|
144
145
|
revopsTypes: string[];
|
|
145
146
|
buildRevopsTypes(tickets: any[]): void;
|
|
147
|
+
private updateCloseStateFromMapping;
|
|
148
|
+
private getActionCompletion;
|
|
146
149
|
hasRevopsType(type: any): boolean;
|
|
150
|
+
private isFinalStatus;
|
|
147
151
|
overallSelectedIds: any;
|
|
148
152
|
overallSelect(event: any): void;
|
|
149
153
|
getAllParentItems(): any[];
|
|
@@ -156,7 +160,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
156
160
|
ticketView(data?: any): void;
|
|
157
161
|
dataStoreView(data?: any): void;
|
|
158
162
|
footfallTicketsData: any[];
|
|
159
|
-
selectedByType
|
|
163
|
+
selectedByType: any;
|
|
160
164
|
selectAllByType: any;
|
|
161
165
|
getListByType(type: any): any[];
|
|
162
166
|
private updateOverallSelectedIds;
|
|
@@ -168,12 +172,12 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
168
172
|
type: any;
|
|
169
173
|
popupvalue: any;
|
|
170
174
|
onSelectAll(type: any, event: any): void;
|
|
171
|
-
onImageCheckboxChange(type:
|
|
175
|
+
onImageCheckboxChange(type: string, id: any, event: any): void;
|
|
172
176
|
remarks: any;
|
|
173
177
|
zoomPopup: ElementRef;
|
|
174
178
|
popupType: any;
|
|
175
179
|
popupIds: any[];
|
|
176
|
-
popupOpen(type: any, value?: any
|
|
180
|
+
popupOpen(type: any, value?: any): void;
|
|
177
181
|
houseKeepingACCount: any;
|
|
178
182
|
employeeACCount: any;
|
|
179
183
|
duplicateACCount: any;
|
|
@@ -195,7 +199,6 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
195
199
|
resetCheckbox(type: any, original: any): void;
|
|
196
200
|
viewMode: "tangoreview" | "approve" | "review" | "tagging";
|
|
197
201
|
getAction(original: any, type: "tagging" | "review" | "tangoreview" | "approve"): any;
|
|
198
|
-
updateCloseButtonFromStore(): void;
|
|
199
202
|
getCurrentReviewMapping(): any;
|
|
200
203
|
isTicketFullyReviewed(mapping: any): boolean;
|
|
201
204
|
getInitialsFromEmail(email?: string): string;
|
|
@@ -209,6 +212,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
209
212
|
getPreviewImageUrl(): any;
|
|
210
213
|
overallMapping: any;
|
|
211
214
|
openImagePreview(list: any, target: any, startIndex: number, title: string): void;
|
|
215
|
+
private setPreviewIndex;
|
|
212
216
|
overallApproveClosed(): boolean;
|
|
213
217
|
getApproveActionForItem(item: any): any | null;
|
|
214
218
|
canShowPreviewActions(item: any): boolean;
|