tango-app-ui-manage-tickets 3.7.0-beta.27 → 3.7.0-beta.29
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-mapping-list/audit-mapping-list.component.mjs +498 -0
- package/esm2022/lib/components/filter-options/filter-options.component.mjs +41 -0
- package/esm2022/lib/components/footfall-dic/footfall-dic.component.mjs +3 -3
- package/esm2022/lib/components/footfall-popup/footfall-popup.component.mjs +15 -0
- package/esm2022/lib/components/remove-audit/remove-audit.component.mjs +80 -0
- package/esm2022/lib/components/start-audit/start-audit.component.mjs +738 -0
- package/esm2022/lib/components/tango-manage-tickets/tango-manage-tickets.component.mjs +4 -3
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +1049 -0
- package/esm2022/lib/components/tickets/tickets.component.mjs +3 -3
- package/esm2022/lib/components/viewcategory/viewcategory.component.mjs +89 -0
- package/esm2022/lib/services/audit.service.mjs +85 -0
- package/esm2022/lib/services/ticket.service.mjs +23 -3
- package/esm2022/lib/services/timer.service.mjs +84 -0
- package/esm2022/lib/tango-manage-tickets-routing.module.mjs +11 -1
- package/esm2022/lib/tango-manage-tickets.module.mjs +33 -4
- package/fesm2022/tango-app-ui-manage-tickets.mjs +3657 -990
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/audit-mapping-list/audit-mapping-list.component.d.ts +72 -0
- package/lib/components/filter-options/filter-options.component.d.ts +15 -0
- package/lib/components/footfall-popup/footfall-popup.component.d.ts +8 -0
- package/lib/components/remove-audit/remove-audit.component.d.ts +16 -0
- package/lib/components/start-audit/start-audit.component.d.ts +86 -0
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +162 -0
- package/lib/components/viewcategory/viewcategory.component.d.ts +16 -0
- package/lib/services/audit.service.d.ts +34 -0
- package/lib/services/ticket.service.d.ts +8 -2
- package/lib/services/timer.service.d.ts +22 -0
- package/lib/tango-manage-tickets.module.d.ts +15 -6
- package/package.json +1 -1
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { SimpleChanges, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
4
|
+
import { ToastService } from 'tango-app-ui-shared';
|
|
5
|
+
import { AuditService } from '../../services/audit.service';
|
|
6
|
+
import { Subscription } from 'rxjs';
|
|
7
|
+
import { TimerService } from '../../services/timer.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class AuditMappingListComponent {
|
|
10
|
+
modalService: NgbModal;
|
|
11
|
+
private router;
|
|
12
|
+
private auditService;
|
|
13
|
+
private toastr;
|
|
14
|
+
private route;
|
|
15
|
+
private cd;
|
|
16
|
+
private timerService;
|
|
17
|
+
totalfile: number;
|
|
18
|
+
customer: number;
|
|
19
|
+
junk: number;
|
|
20
|
+
employee: number;
|
|
21
|
+
currentValue: any;
|
|
22
|
+
showvalue: boolean;
|
|
23
|
+
retggingpage: boolean;
|
|
24
|
+
showvalue1: boolean;
|
|
25
|
+
junkimage: any;
|
|
26
|
+
retagimage: any;
|
|
27
|
+
submitvalue: boolean;
|
|
28
|
+
auditmappingdata: any;
|
|
29
|
+
customercount: any;
|
|
30
|
+
auditLoading: boolean;
|
|
31
|
+
selectedType: any;
|
|
32
|
+
junkcount: any;
|
|
33
|
+
employeecount: any;
|
|
34
|
+
employeimage: any;
|
|
35
|
+
filedetails: any;
|
|
36
|
+
demographic: any;
|
|
37
|
+
submitted: boolean;
|
|
38
|
+
dummymapping: any;
|
|
39
|
+
private readonly destroy$;
|
|
40
|
+
timePassed: number;
|
|
41
|
+
subscription: Subscription | null;
|
|
42
|
+
formattedTime: string;
|
|
43
|
+
count: any;
|
|
44
|
+
category: any;
|
|
45
|
+
confirmDraft: any;
|
|
46
|
+
constructor(modalService: NgbModal, router: Router, auditService: AuditService, toastr: ToastService, route: ActivatedRoute, cd: ChangeDetectorRef, timerService: TimerService);
|
|
47
|
+
ngOnInit(): void;
|
|
48
|
+
getAuditConfig(): void;
|
|
49
|
+
setTimer(): void;
|
|
50
|
+
ngOnDestroy(): void;
|
|
51
|
+
handleGlobalMouseEvent: () => void;
|
|
52
|
+
initial_data_loading(): void;
|
|
53
|
+
getmappingdata(): void;
|
|
54
|
+
redireact: boolean;
|
|
55
|
+
backToTagging(): void;
|
|
56
|
+
changesdata(): void;
|
|
57
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
58
|
+
allowDrop(ev: any): void;
|
|
59
|
+
drag(ev: any): void;
|
|
60
|
+
dropforretag(ev: any): void;
|
|
61
|
+
removeimage(data: any): void;
|
|
62
|
+
saveDraftimg(): void;
|
|
63
|
+
taggingview(): void;
|
|
64
|
+
setValue(i: any): any;
|
|
65
|
+
currentGroupNumber: any;
|
|
66
|
+
getGroupNumber(obj: any): number | null;
|
|
67
|
+
resetGroupNumber(): void;
|
|
68
|
+
getFilteredData(count: number): any;
|
|
69
|
+
toggleImage(img_name: any): void;
|
|
70
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuditMappingListComponent, never>;
|
|
71
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AuditMappingListComponent, "lib-audit-mapping-list", never, {}, {}, never, never, false, never>;
|
|
72
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FilterOptionsComponent {
|
|
4
|
+
applyFilters: EventEmitter<any>;
|
|
5
|
+
closePanel: EventEmitter<void>;
|
|
6
|
+
status: string;
|
|
7
|
+
condition: string;
|
|
8
|
+
ticketValue: number | null;
|
|
9
|
+
reviewer: string;
|
|
10
|
+
apply(): void;
|
|
11
|
+
close(): void;
|
|
12
|
+
reset(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterOptionsComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterOptionsComponent, "lib-filter-options", never, {}, { "applyFilters": "applyFilters"; "closePanel": "closePanel"; }, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FootfallPopupComponent {
|
|
3
|
+
comment: any;
|
|
4
|
+
cancel(): void;
|
|
5
|
+
commentSubmit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FootfallPopupComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FootfallPopupComponent, "lib-footfall-popup", never, {}, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NgbModal, NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RemoveAuditComponent implements OnInit {
|
|
5
|
+
private modalService;
|
|
6
|
+
activeModal: NgbActiveModal;
|
|
7
|
+
imagelist: any;
|
|
8
|
+
maindata: any;
|
|
9
|
+
data: any;
|
|
10
|
+
constructor(modalService: NgbModal, activeModal: NgbActiveModal);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
removeimage(data: any): void;
|
|
13
|
+
closepopup(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RemoveAuditComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RemoveAuditComponent, "lib-remove-audit", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
4
|
+
import { Subject, Subscription } from 'rxjs';
|
|
5
|
+
import { AuditService } from '../../services/audit.service';
|
|
6
|
+
import { ToastService } from 'tango-app-ui-shared';
|
|
7
|
+
import { NgxSpinnerService } from 'ngx-spinner';
|
|
8
|
+
import { ExcelService } from '../../services/excel.service';
|
|
9
|
+
import { TimerService } from '../../services/timer.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class StartAuditComponent implements OnInit, OnDestroy {
|
|
12
|
+
private excel;
|
|
13
|
+
private auditservice;
|
|
14
|
+
private toastr;
|
|
15
|
+
private router;
|
|
16
|
+
private cd;
|
|
17
|
+
private modalService;
|
|
18
|
+
private timerService;
|
|
19
|
+
private spinnerService;
|
|
20
|
+
private route;
|
|
21
|
+
junkimage: any;
|
|
22
|
+
employeimage: any;
|
|
23
|
+
filedetails: any;
|
|
24
|
+
datareason: any;
|
|
25
|
+
limit: any;
|
|
26
|
+
nextId: any;
|
|
27
|
+
spinnerstart: boolean;
|
|
28
|
+
submitted: boolean;
|
|
29
|
+
auditId: any;
|
|
30
|
+
customercount: number;
|
|
31
|
+
junkcount: number;
|
|
32
|
+
employeecount: number;
|
|
33
|
+
demographic: any;
|
|
34
|
+
id: any;
|
|
35
|
+
queueName: any;
|
|
36
|
+
auditmappingdata: any;
|
|
37
|
+
totalfile: any;
|
|
38
|
+
auditLoading: boolean;
|
|
39
|
+
badge: boolean;
|
|
40
|
+
imagelist: any;
|
|
41
|
+
selected: any;
|
|
42
|
+
selectedType: any;
|
|
43
|
+
auditLoading1: boolean;
|
|
44
|
+
Nodata: boolean;
|
|
45
|
+
counter: any;
|
|
46
|
+
clickedImages: boolean[];
|
|
47
|
+
confirmDraft: any;
|
|
48
|
+
confirmerror: any;
|
|
49
|
+
Errormsg: any;
|
|
50
|
+
storedetails: any;
|
|
51
|
+
openmodel: boolean;
|
|
52
|
+
private readonly destroy$;
|
|
53
|
+
getBack: boolean;
|
|
54
|
+
category: any;
|
|
55
|
+
onScroll(): void;
|
|
56
|
+
handleKeyPress(event: KeyboardEvent): void;
|
|
57
|
+
constructor(excel: ExcelService, auditservice: AuditService, toastr: ToastService, router: Router, cd: ChangeDetectorRef, modalService: NgbModal, timerService: TimerService, spinnerService: NgxSpinnerService, route: ActivatedRoute);
|
|
58
|
+
destroy: Subject<unknown>;
|
|
59
|
+
showDialog: boolean;
|
|
60
|
+
timePassed: number;
|
|
61
|
+
subscription: Subscription | null;
|
|
62
|
+
formattedTime: string;
|
|
63
|
+
notice: string;
|
|
64
|
+
showNotice: boolean;
|
|
65
|
+
rxjsTimer: Subscription[];
|
|
66
|
+
ngOnInit(): void;
|
|
67
|
+
setTimer(): void;
|
|
68
|
+
handleGlobalMouseEvent: () => void;
|
|
69
|
+
ngOnDestroy(): void;
|
|
70
|
+
initial_data_loading(): void;
|
|
71
|
+
toggleImage(img_name: any): void;
|
|
72
|
+
getAuditConfig(): void;
|
|
73
|
+
getMapping(nextId?: any): void;
|
|
74
|
+
removeaudit(data: any): void;
|
|
75
|
+
allowDrop(event: any): void;
|
|
76
|
+
dragImage(event: any): void;
|
|
77
|
+
dropImage(event: any): void;
|
|
78
|
+
dragStart(event: DragEvent): void;
|
|
79
|
+
Reviewdata(): void;
|
|
80
|
+
viewcategory(data: any): void;
|
|
81
|
+
savedraft(): Promise<void>;
|
|
82
|
+
backtotickets(): void;
|
|
83
|
+
cameraPreview(): void;
|
|
84
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StartAuditComponent, never>;
|
|
85
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StartAuditComponent, "lib-start-audit", never, {}, {}, never, never, false, never>;
|
|
86
|
+
}
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
import { OnDestroy, OnInit, ChangeDetectorRef, EventEmitter, ElementRef } from "@angular/core";
|
|
2
|
+
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
3
|
+
import { GlobalStateService } from "tango-app-ui-global";
|
|
4
|
+
import { TicketService } from "../../services/ticket.service";
|
|
5
|
+
import { ExcelService } from "../../services/excel.service";
|
|
6
|
+
import { ToastService } from "tango-app-ui-shared";
|
|
7
|
+
import { FormBuilder, FormGroup } from "@angular/forms";
|
|
8
|
+
import { Router } from "@angular/router";
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
11
|
+
private modalService;
|
|
12
|
+
gs: GlobalStateService;
|
|
13
|
+
private service;
|
|
14
|
+
private cd;
|
|
15
|
+
private excelService;
|
|
16
|
+
private ts;
|
|
17
|
+
private fb;
|
|
18
|
+
private router;
|
|
19
|
+
searchValue: any;
|
|
20
|
+
sortedColumn: string;
|
|
21
|
+
sortDirection: number;
|
|
22
|
+
private readonly destroy$;
|
|
23
|
+
constructor(modalService: NgbModal, gs: GlobalStateService, service: TicketService, cd: ChangeDetectorRef, excelService: ExcelService, ts: ToastService, fb: FormBuilder, router: Router);
|
|
24
|
+
headerFilters: any;
|
|
25
|
+
footfallList_req: any;
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
getFootfallSummaryData: any;
|
|
28
|
+
getTicketSummary(): void;
|
|
29
|
+
offset: number;
|
|
30
|
+
limit: number;
|
|
31
|
+
isExport: any;
|
|
32
|
+
footfallListData: any;
|
|
33
|
+
totalItems: any;
|
|
34
|
+
paginationSizes: number[];
|
|
35
|
+
loading: boolean;
|
|
36
|
+
noData: boolean;
|
|
37
|
+
tangoType: any;
|
|
38
|
+
getTicketList(): void;
|
|
39
|
+
currentPage: any;
|
|
40
|
+
pageSize: any;
|
|
41
|
+
onPageChange(pageOffset: number): void;
|
|
42
|
+
onPageSizeChange(pageSize: number): void;
|
|
43
|
+
setpageSize(): any;
|
|
44
|
+
searchData(): void;
|
|
45
|
+
exportXLSX(): void;
|
|
46
|
+
onSort(column: string): void;
|
|
47
|
+
select: string;
|
|
48
|
+
ticketData: any;
|
|
49
|
+
startAudit(): void;
|
|
50
|
+
backToNavigation(): void;
|
|
51
|
+
isCollapsed: boolean;
|
|
52
|
+
toggleSidebar(): void;
|
|
53
|
+
toggleFilter(): void;
|
|
54
|
+
isFilterOpen: boolean;
|
|
55
|
+
filterForm: FormGroup;
|
|
56
|
+
filterChange: EventEmitter<any>;
|
|
57
|
+
newForm(): void;
|
|
58
|
+
applyFilter(): void;
|
|
59
|
+
resetFilter(): void;
|
|
60
|
+
close(): void;
|
|
61
|
+
StoresSearchValue: any;
|
|
62
|
+
sortedColumn1: string;
|
|
63
|
+
sortDirection1: number;
|
|
64
|
+
searchStoresData(): void;
|
|
65
|
+
sortValue(column: string): void;
|
|
66
|
+
openTicketsList: any[];
|
|
67
|
+
selectedStores: any[];
|
|
68
|
+
allSelected: boolean;
|
|
69
|
+
get storeCount(): number;
|
|
70
|
+
isSelected(store: any): boolean;
|
|
71
|
+
private handleStoreSelected;
|
|
72
|
+
toggleStoreSelection(store: any): void;
|
|
73
|
+
toggleSelectAll(): void;
|
|
74
|
+
originalImage: any;
|
|
75
|
+
ticket: any;
|
|
76
|
+
imageUrl: any;
|
|
77
|
+
getFormattedEntryTime(entryTime: any): string;
|
|
78
|
+
duplicates: any;
|
|
79
|
+
selectedDuplicatesByParent: {
|
|
80
|
+
[parentId: number]: number[];
|
|
81
|
+
};
|
|
82
|
+
isDuplicateSelected(parentId: number, duplicateId: number): boolean;
|
|
83
|
+
onDuplicateCheckboxChange(parentId: number, duplicateId: number, event: Event): void;
|
|
84
|
+
areAllDuplicatesSelected(original: any): boolean;
|
|
85
|
+
onToggleSelectAllDuplicates(original: any, event: Event): void;
|
|
86
|
+
commentModal(obj: any): void;
|
|
87
|
+
commentsAccordionOpen: boolean;
|
|
88
|
+
toggleCommentsAccordion(): void;
|
|
89
|
+
ngOnDestroy(): void;
|
|
90
|
+
comments: any;
|
|
91
|
+
showRevisedDetails: boolean;
|
|
92
|
+
footfallNoData: boolean;
|
|
93
|
+
footfallLoading: boolean;
|
|
94
|
+
footfalloffset: number;
|
|
95
|
+
footfalllimit: number;
|
|
96
|
+
totalItemsFootfall: any;
|
|
97
|
+
dataIndexId: string;
|
|
98
|
+
dateString: string;
|
|
99
|
+
storeIdValue: any;
|
|
100
|
+
lastSelectedTicket: any;
|
|
101
|
+
selecteValues: any;
|
|
102
|
+
hasInitialStoreSynced: boolean;
|
|
103
|
+
pageSizeFootfall: number;
|
|
104
|
+
paginationSizesFootfall: number[];
|
|
105
|
+
addStoreIfNotExists(store: any): void;
|
|
106
|
+
hasRevopsType(type: string): boolean;
|
|
107
|
+
overallSelectedIds: any;
|
|
108
|
+
overallSelect(event: any): void;
|
|
109
|
+
getAllParentItems(): any[];
|
|
110
|
+
isCheckboxEnable: boolean;
|
|
111
|
+
closeBtn: boolean;
|
|
112
|
+
closeDisabled: boolean;
|
|
113
|
+
startReview(): void;
|
|
114
|
+
closePopup: ElementRef;
|
|
115
|
+
stopReview(): void;
|
|
116
|
+
ticketView(data?: any): void;
|
|
117
|
+
dataStoreView(data?: any): void;
|
|
118
|
+
footfallTicketsData: any[];
|
|
119
|
+
selectedByType?: any;
|
|
120
|
+
selectAllByType: any;
|
|
121
|
+
getListByType(type: "junk" | "employee" | "houseKeeping"): any[];
|
|
122
|
+
private updateOverallSelectedIds;
|
|
123
|
+
selectedCategories: string[];
|
|
124
|
+
get selectedCategoriesLabel(): string;
|
|
125
|
+
type: any;
|
|
126
|
+
popupvalue: "employee" | "houseKeeping" | "duplicate" | "junk" | "";
|
|
127
|
+
onSelectAll(type: "junk" | "employee" | "houseKeeping", event: any): void;
|
|
128
|
+
onImageCheckboxChange(type: "junk" | "employee" | "houseKeeping", id: any): void;
|
|
129
|
+
remarks: any;
|
|
130
|
+
zoomPopup: ElementRef;
|
|
131
|
+
popupType: any;
|
|
132
|
+
popupIds: any[];
|
|
133
|
+
popupOpen(type: any, value?: any | "employee" | "junk" | "houseKeeping" | "duplicate"): void;
|
|
134
|
+
houseKeepingACCount: any;
|
|
135
|
+
employeeACCount: any;
|
|
136
|
+
duplicateACCount: any;
|
|
137
|
+
junkACCount: any;
|
|
138
|
+
selectedDuplicateImagesList: any[];
|
|
139
|
+
selectedHousekeepingImagesList: any[];
|
|
140
|
+
selectedEmployeeImagesList: any[];
|
|
141
|
+
selectedJunkImagesList: any[];
|
|
142
|
+
submitValue(status?: string, category?: string): void;
|
|
143
|
+
resetSelections(): void;
|
|
144
|
+
cancel(): void;
|
|
145
|
+
arrowshow: boolean;
|
|
146
|
+
openArrow(): void;
|
|
147
|
+
closeArrow(): void;
|
|
148
|
+
getOpenTicketList(data?: any): void;
|
|
149
|
+
isApproved(original: any): boolean;
|
|
150
|
+
isRejected(original: any): boolean;
|
|
151
|
+
resetCheckbox(type: "duplicate" | "employee" | "junk" | "houseKeeping", original: any): void;
|
|
152
|
+
viewMode: "tangoreview" | "review" | "tagging";
|
|
153
|
+
getAction(original: any, type: "tagging" | "review" | "tangoreview"): any;
|
|
154
|
+
updateCloseButtonFromStore(): void;
|
|
155
|
+
getCurrentReviewMapping(): any;
|
|
156
|
+
isTicketFullyReviewed(mapping: any): boolean;
|
|
157
|
+
getInitialsFromEmail(email?: string): string;
|
|
158
|
+
confirmCloseTicket(): void;
|
|
159
|
+
confirmCloseCancel(): void;
|
|
160
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketFootfallNewComponent, never>;
|
|
161
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketFootfallNewComponent, "lib-ticket-footfall-new", never, {}, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
162
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { NgbModal, NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ViewcategoryComponent {
|
|
4
|
+
modalService: NgbModal;
|
|
5
|
+
activeModel: NgbActiveModal;
|
|
6
|
+
maindata: any;
|
|
7
|
+
imagelist: any;
|
|
8
|
+
counter: any;
|
|
9
|
+
data: any;
|
|
10
|
+
constructor(modalService: NgbModal, activeModel: NgbActiveModal);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
removeimage(data: any): void;
|
|
13
|
+
closepopup(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ViewcategoryComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ViewcategoryComponent, "lib-viewcategory", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable, BehaviorSubject } from 'rxjs';
|
|
3
|
+
import { GlobalStateService } from 'tango-app-ui-global';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AuditService {
|
|
6
|
+
private http;
|
|
7
|
+
private gs;
|
|
8
|
+
ticketApiUrl: any;
|
|
9
|
+
storeApiUrl: any;
|
|
10
|
+
data: any;
|
|
11
|
+
userUrl: any;
|
|
12
|
+
tokenStorage: any;
|
|
13
|
+
zoneauditApiUrl: any;
|
|
14
|
+
edgeAppApiUrl: any;
|
|
15
|
+
clientApiUrl: string;
|
|
16
|
+
clientId: BehaviorSubject<string>;
|
|
17
|
+
clientData: BehaviorSubject<any>;
|
|
18
|
+
auditApiUrl: any;
|
|
19
|
+
traxauditApiUrl: any;
|
|
20
|
+
vmsAuditUrl: any;
|
|
21
|
+
constructor(http: HttpClient, gs: GlobalStateService);
|
|
22
|
+
getAuditMapping(payload: any): Observable<Object>;
|
|
23
|
+
getAuditconfig(clientId: any): Observable<Object>;
|
|
24
|
+
export(data: any): Observable<ArrayBuffer>;
|
|
25
|
+
getauditCard(filter: any, user: any): Observable<Object>;
|
|
26
|
+
getactivitylog(data: any): Observable<Object>;
|
|
27
|
+
saveDraft(data: any): Observable<Object>;
|
|
28
|
+
getAuditmappinglist(payload: any): Observable<Object>;
|
|
29
|
+
saveaudit(data: any): Observable<Object>;
|
|
30
|
+
userDetails(): Observable<any>;
|
|
31
|
+
private handleError;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuditService, never>;
|
|
33
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuditService>;
|
|
34
|
+
}
|
|
@@ -38,11 +38,17 @@ export declare class TicketService {
|
|
|
38
38
|
getAuditImages(data: any): Observable<Object>;
|
|
39
39
|
ExportAuditImagesasxlsx(data: any): Observable<ArrayBuffer>;
|
|
40
40
|
getTicketSummaryApi(client: any, fromDate: any, toDate: any): Observable<any>;
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
getTicketListOldApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any): Observable<any>;
|
|
42
|
+
getTicketListApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any, tangoType: any): Observable<any>;
|
|
43
|
+
getTicketListExportOldApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any): Observable<any>;
|
|
44
|
+
getTicketListExportApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any, tangoType: any): Observable<any>;
|
|
43
45
|
getTicketsApi(store: any, fromDate: any, toDate: any, revopsType: any, status: any, action: any, offset: any, limit: any): Observable<any>;
|
|
46
|
+
getTicketsNewApi(ticketId: any): Observable<any>;
|
|
44
47
|
getTaggedStoresApi(client: any, fromDate: any, toDate: any, searchValue: any, clusters: any, sortOrder: any): Observable<any>;
|
|
45
48
|
getUpdateStatusApi(data: any): Observable<any>;
|
|
49
|
+
getUpdateTempStatusApi(data: any): Observable<any>;
|
|
50
|
+
getOpenTicketListApi(data: any): Observable<any>;
|
|
51
|
+
getCreateTicketListApi(data: any): Observable<any>;
|
|
46
52
|
getclusters(data: any): Observable<Object>;
|
|
47
53
|
private footfallData;
|
|
48
54
|
setFootfallData(data: any): void;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { BehaviorSubject } from 'rxjs';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TimerService {
|
|
5
|
+
private route;
|
|
6
|
+
private timePassed;
|
|
7
|
+
private subscription;
|
|
8
|
+
private inactivityTimeout;
|
|
9
|
+
private INACTIVITY_LIMIT;
|
|
10
|
+
constructor(route: ActivatedRoute);
|
|
11
|
+
startTimer(): void;
|
|
12
|
+
stopTimer(): void;
|
|
13
|
+
stopTimerAfterInactivity(): void;
|
|
14
|
+
resetInactivityTimeout(): void;
|
|
15
|
+
getTimePassed(): BehaviorSubject<number>;
|
|
16
|
+
clearTimer(): void;
|
|
17
|
+
resetTimer(): void;
|
|
18
|
+
formatTime(seconds: number): string;
|
|
19
|
+
private padZero;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimerService, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TimerService>;
|
|
22
|
+
}
|
|
@@ -11,13 +11,22 @@ import * as i9 from "./components/footfall-dic/footfall-dic.component";
|
|
|
11
11
|
import * as i10 from "./components/reactive-select/reactive-select.component";
|
|
12
12
|
import * as i11 from "./components/group-select/group-select.component";
|
|
13
13
|
import * as i12 from "./components/footfall-dicview/footfall-dicview.component";
|
|
14
|
-
import * as i13 from "
|
|
15
|
-
import * as i14 from "./
|
|
16
|
-
import * as i15 from "
|
|
17
|
-
import * as i16 from "
|
|
18
|
-
import * as i17 from "
|
|
14
|
+
import * as i13 from "./components/audit-mapping-list/audit-mapping-list.component";
|
|
15
|
+
import * as i14 from "./components/start-audit/start-audit.component";
|
|
16
|
+
import * as i15 from "./components/viewcategory/viewcategory.component";
|
|
17
|
+
import * as i16 from "./components/remove-audit/remove-audit.component";
|
|
18
|
+
import * as i17 from "./components/ticket-footfall-new/ticket-footfall-new.component";
|
|
19
|
+
import * as i18 from "./components/footfall-popup/footfall-popup.component";
|
|
20
|
+
import * as i19 from "./components/filter-options/filter-options.component";
|
|
21
|
+
import * as i20 from "@angular/common";
|
|
22
|
+
import * as i21 from "./tango-manage-tickets-routing.module";
|
|
23
|
+
import * as i22 from "@angular/forms";
|
|
24
|
+
import * as i23 from "tango-app-ui-shared";
|
|
25
|
+
import * as i24 from "ngx-daterangepicker-material";
|
|
26
|
+
import * as i25 from "@ng-bootstrap/ng-bootstrap";
|
|
27
|
+
import * as i26 from "ngx-spinner";
|
|
19
28
|
export declare class TangoManageTicketsModule {
|
|
20
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<TangoManageTicketsModule, never>;
|
|
21
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TangoManageTicketsModule, [typeof i1.TangoManageTicketsComponent, typeof i2.TicketsComponent, typeof i3.AddCsmModalComponent, typeof i4.CommentModelComponent, typeof i5.AuditMetricsComponent, typeof i6.ReTriggerComponent, typeof i7.AuditLogComponent, typeof i8.CountComponent, typeof i9.FootfallDicComponent, typeof i10.ReactiveSelectComponent, typeof i11.GroupSelectComponent, typeof i12.FootfallDicviewComponent], [typeof
|
|
30
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TangoManageTicketsModule, [typeof i1.TangoManageTicketsComponent, typeof i2.TicketsComponent, typeof i3.AddCsmModalComponent, typeof i4.CommentModelComponent, typeof i5.AuditMetricsComponent, typeof i6.ReTriggerComponent, typeof i7.AuditLogComponent, typeof i8.CountComponent, typeof i9.FootfallDicComponent, typeof i10.ReactiveSelectComponent, typeof i11.GroupSelectComponent, typeof i12.FootfallDicviewComponent, typeof i13.AuditMappingListComponent, typeof i14.StartAuditComponent, typeof i15.ViewcategoryComponent, typeof i16.RemoveAuditComponent, typeof i17.TicketFootfallNewComponent, typeof i18.FootfallPopupComponent, typeof i19.FilterOptionsComponent], [typeof i20.CommonModule, typeof i21.TangoManageTicketsRoutingModule, typeof i22.FormsModule, typeof i22.ReactiveFormsModule, typeof i23.CommonSharedModule, typeof i24.NgxDaterangepickerMd, typeof i25.NgbAccordionModule, typeof i26.NgxSpinnerModule], never>;
|
|
22
31
|
static ɵinj: i0.ɵɵInjectorDeclaration<TangoManageTicketsModule>;
|
|
23
32
|
}
|