tango-app-ui-manage-tickets 3.7.0-beta.69 → 3.7.0-beta.70
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/.eslintrc.json +37 -0
- package/ng-package.json +7 -0
- package/package.json +12 -25
- package/src/lib/components/add-csm-modal/add-csm-modal.component.html +32 -0
- package/src/lib/components/add-csm-modal/add-csm-modal.component.scss +14 -0
- package/src/lib/components/add-csm-modal/add-csm-modal.component.spec.ts +23 -0
- package/src/lib/components/add-csm-modal/add-csm-modal.component.ts +94 -0
- package/src/lib/components/audit-log/audit-log.component.html +1 -0
- package/src/lib/components/audit-log/audit-log.component.scss +0 -0
- package/src/lib/components/audit-log/audit-log.component.spec.ts +23 -0
- package/src/lib/components/audit-log/audit-log.component.ts +10 -0
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.html +234 -0
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.scss +186 -0
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.spec.ts +23 -0
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.ts +536 -0
- package/src/lib/components/audit-metrics/audit-metrics.component.html +345 -0
- package/src/lib/components/audit-metrics/audit-metrics.component.scss +34 -0
- package/src/lib/components/audit-metrics/audit-metrics.component.spec.ts +23 -0
- package/src/lib/components/audit-metrics/audit-metrics.component.ts +292 -0
- package/src/lib/components/audit-report-popup/audit-report-popup.component.html +111 -0
- package/src/lib/components/audit-report-popup/audit-report-popup.component.scss +101 -0
- package/src/lib/components/audit-report-popup/audit-report-popup.component.spec.ts +23 -0
- package/src/lib/components/audit-report-popup/audit-report-popup.component.ts +397 -0
- package/src/lib/components/audit-retag/audit-retag.component.html +129 -0
- package/src/lib/components/audit-retag/audit-retag.component.scss +146 -0
- package/src/lib/components/audit-retag/audit-retag.component.spec.ts +23 -0
- package/src/lib/components/audit-retag/audit-retag.component.ts +497 -0
- package/src/lib/components/comment-model/comment-model.component.html +24 -0
- package/src/lib/components/comment-model/comment-model.component.scss +20 -0
- package/src/lib/components/comment-model/comment-model.component.spec.ts +23 -0
- package/src/lib/components/comment-model/comment-model.component.ts +53 -0
- package/src/lib/components/count/count.component.html +54 -0
- package/src/lib/components/count/count.component.scss +14 -0
- package/src/lib/components/count/count.component.spec.ts +23 -0
- package/src/lib/components/count/count.component.ts +82 -0
- package/src/lib/components/custom-select/custom-select.component.html +134 -0
- package/src/lib/components/custom-select/custom-select.component.scss +204 -0
- package/src/lib/components/custom-select/custom-select.component.spec.ts +23 -0
- package/src/lib/components/custom-select/custom-select.component.ts +189 -0
- package/src/lib/components/filter-options/filter-options.component.html +51 -0
- package/src/lib/components/filter-options/filter-options.component.scss +102 -0
- package/src/lib/components/filter-options/filter-options.component.spec.ts +23 -0
- package/src/lib/components/filter-options/filter-options.component.ts +38 -0
- package/src/lib/components/footfall-dic/footfall-dic.component.html +1275 -0
- package/src/lib/components/footfall-dic/footfall-dic.component.scss +273 -0
- package/src/lib/components/footfall-dic/footfall-dic.component.spec.ts +23 -0
- package/src/lib/components/footfall-dic/footfall-dic.component.ts +1206 -0
- package/src/lib/components/footfall-dicview/footfall-dicview.component.html +1136 -0
- package/src/lib/components/footfall-dicview/footfall-dicview.component.scss +416 -0
- package/src/lib/components/footfall-dicview/footfall-dicview.component.spec.ts +23 -0
- package/src/lib/components/footfall-dicview/footfall-dicview.component.ts +1168 -0
- package/src/lib/components/footfall-popup/footfall-popup.component.html +61 -0
- package/src/lib/components/footfall-popup/footfall-popup.component.scss +20 -0
- package/src/lib/components/footfall-popup/footfall-popup.component.spec.ts +23 -0
- package/src/lib/components/footfall-popup/footfall-popup.component.ts +12 -0
- package/src/lib/components/group-select/group-select.component.html +44 -0
- package/src/lib/components/group-select/group-select.component.scss +144 -0
- package/src/lib/components/group-select/group-select.component.spec.ts +23 -0
- package/src/lib/components/group-select/group-select.component.ts +145 -0
- package/src/lib/components/re-trigger/re-trigger.component.html +53 -0
- package/src/lib/components/re-trigger/re-trigger.component.scss +16 -0
- package/src/lib/components/re-trigger/re-trigger.component.spec.ts +23 -0
- package/src/lib/components/re-trigger/re-trigger.component.ts +96 -0
- package/src/lib/components/reactive-select/reactive-select.component.html +18 -0
- package/src/lib/components/reactive-select/reactive-select.component.scss +52 -0
- package/src/lib/components/reactive-select/reactive-select.component.spec.ts +23 -0
- package/src/lib/components/reactive-select/reactive-select.component.ts +104 -0
- package/src/lib/components/remove-audit/remove-audit.component.html +38 -0
- package/src/lib/components/remove-audit/remove-audit.component.scss +27 -0
- package/src/lib/components/remove-audit/remove-audit.component.spec.ts +23 -0
- package/src/lib/components/remove-audit/remove-audit.component.ts +81 -0
- package/src/lib/components/start-audit/start-audit.component.html +174 -0
- package/src/lib/components/start-audit/start-audit.component.scss +185 -0
- package/src/lib/components/start-audit/start-audit.component.spec.ts +23 -0
- package/src/lib/components/start-audit/start-audit.component.ts +772 -0
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.html +43 -0
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.scss +35 -0
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.spec.ts +23 -0
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.ts +118 -0
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.html +386 -0
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.scss +87 -0
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.spec.ts +23 -0
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.ts +493 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.html +3751 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.scss +1240 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.spec.ts +23 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.ts +2863 -0
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.html +100 -0
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.scss +34 -0
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.spec.ts +23 -0
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.ts +48 -0
- package/src/lib/components/tickets/tickets.component.html +451 -0
- package/src/lib/components/tickets/tickets.component.scss +131 -0
- package/src/lib/components/tickets/tickets.component.spec.ts +23 -0
- package/src/lib/components/tickets/tickets.component.ts +809 -0
- package/src/lib/components/viewcategory/viewcategory.component.html +38 -0
- package/src/lib/components/viewcategory/viewcategory.component.scss +29 -0
- package/src/lib/components/viewcategory/viewcategory.component.spec.ts +23 -0
- package/src/lib/components/viewcategory/viewcategory.component.ts +79 -0
- package/src/lib/services/audit.service.spec.ts +16 -0
- package/src/lib/services/audit.service.ts +98 -0
- package/src/lib/services/excel.service.ts +48 -0
- package/src/lib/services/ticket.service.spec.ts +16 -0
- package/src/lib/services/ticket.service.ts +501 -0
- package/src/lib/services/timer.service.spec.ts +16 -0
- package/src/lib/services/timer.service.ts +92 -0
- package/src/lib/tango-manage-tickets-routing.module.ts +37 -0
- package/src/lib/tango-manage-tickets.module.ts +68 -0
- package/{public-api.d.ts → src/public-api.ts} +8 -2
- package/tsconfig.lib.json +14 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +14 -0
- package/esm2022/lib/components/add-csm-modal/add-csm-modal.component.mjs +0 -98
- package/esm2022/lib/components/audit-log/audit-log.component.mjs +0 -11
- package/esm2022/lib/components/audit-mapping-list/audit-mapping-list.component.mjs +0 -498
- package/esm2022/lib/components/audit-metrics/audit-metrics.component.mjs +0 -298
- package/esm2022/lib/components/audit-report-popup/audit-report-popup.component.mjs +0 -389
- package/esm2022/lib/components/audit-retag/audit-retag.component.mjs +0 -480
- package/esm2022/lib/components/comment-model/comment-model.component.mjs +0 -58
- package/esm2022/lib/components/count/count.component.mjs +0 -89
- package/esm2022/lib/components/custom-select/custom-select.component.mjs +0 -187
- package/esm2022/lib/components/filter-options/filter-options.component.mjs +0 -41
- package/esm2022/lib/components/footfall-dic/footfall-dic.component.mjs +0 -1061
- package/esm2022/lib/components/footfall-dicview/footfall-dicview.component.mjs +0 -1014
- package/esm2022/lib/components/footfall-popup/footfall-popup.component.mjs +0 -15
- package/esm2022/lib/components/group-select/group-select.component.mjs +0 -155
- package/esm2022/lib/components/re-trigger/re-trigger.component.mjs +0 -96
- package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +0 -108
- package/esm2022/lib/components/remove-audit/remove-audit.component.mjs +0 -81
- package/esm2022/lib/components/start-audit/start-audit.component.mjs +0 -758
- package/esm2022/lib/components/tango-manage-tickets/tango-manage-tickets.component.mjs +0 -131
- package/esm2022/lib/components/ticket-filter-panel/ticket-filter-panel.component.mjs +0 -435
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +0 -2414
- package/esm2022/lib/components/ticketclosepopup/ticketclosepopup.component.mjs +0 -43
- package/esm2022/lib/components/tickets/tickets.component.mjs +0 -847
- package/esm2022/lib/components/viewcategory/viewcategory.component.mjs +0 -89
- package/esm2022/lib/services/audit.service.mjs +0 -88
- package/esm2022/lib/services/excel.service.mjs +0 -45
- package/esm2022/lib/services/ticket.service.mjs +0 -319
- package/esm2022/lib/services/timer.service.mjs +0 -84
- package/esm2022/lib/tango-manage-tickets-routing.module.mjs +0 -44
- package/esm2022/lib/tango-manage-tickets.module.mjs +0 -109
- package/esm2022/public-api.mjs +0 -6
- package/esm2022/tango-app-ui-manage-tickets.mjs +0 -5
- package/fesm2022/tango-app-ui-manage-tickets.mjs +0 -9848
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/components/add-csm-modal/add-csm-modal.component.d.ts +0 -30
- package/lib/components/audit-log/audit-log.component.d.ts +0 -5
- package/lib/components/audit-mapping-list/audit-mapping-list.component.d.ts +0 -73
- package/lib/components/audit-metrics/audit-metrics.component.d.ts +0 -59
- package/lib/components/audit-report-popup/audit-report-popup.component.d.ts +0 -52
- package/lib/components/audit-retag/audit-retag.component.d.ts +0 -59
- package/lib/components/comment-model/comment-model.component.d.ts +0 -17
- package/lib/components/count/count.component.d.ts +0 -23
- package/lib/components/custom-select/custom-select.component.d.ts +0 -35
- package/lib/components/filter-options/filter-options.component.d.ts +0 -15
- package/lib/components/footfall-dic/footfall-dic.component.d.ts +0 -143
- package/lib/components/footfall-dicview/footfall-dicview.component.d.ts +0 -132
- package/lib/components/footfall-popup/footfall-popup.component.d.ts +0 -8
- package/lib/components/group-select/group-select.component.d.ts +0 -33
- package/lib/components/re-trigger/re-trigger.component.d.ts +0 -32
- package/lib/components/reactive-select/reactive-select.component.d.ts +0 -32
- package/lib/components/remove-audit/remove-audit.component.d.ts +0 -16
- package/lib/components/start-audit/start-audit.component.d.ts +0 -86
- package/lib/components/tango-manage-tickets/tango-manage-tickets.component.d.ts +0 -28
- package/lib/components/ticket-filter-panel/ticket-filter-panel.component.d.ts +0 -79
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +0 -291
- package/lib/components/ticketclosepopup/ticketclosepopup.component.d.ts +0 -15
- package/lib/components/tickets/tickets.component.d.ts +0 -88
- package/lib/components/viewcategory/viewcategory.component.d.ts +0 -16
- package/lib/services/audit.service.d.ts +0 -36
- package/lib/services/excel.service.d.ts +0 -10
- package/lib/services/ticket.service.d.ts +0 -87
- package/lib/services/timer.service.d.ts +0 -22
- package/lib/tango-manage-tickets-routing.module.d.ts +0 -7
- package/lib/tango-manage-tickets.module.d.ts +0 -38
package/index.d.ts
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
-
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
4
|
-
import { GlobalStateService } from 'tango-app-ui-global';
|
|
5
|
-
import { TicketService } from '../../services/ticket.service';
|
|
6
|
-
import { ToastService } from 'tango-app-ui-shared';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class AddCsmModalComponent implements OnInit, OnDestroy {
|
|
9
|
-
private activeModal;
|
|
10
|
-
gs: GlobalStateService;
|
|
11
|
-
private service;
|
|
12
|
-
private toast;
|
|
13
|
-
ticketId: any;
|
|
14
|
-
csmUserList: any;
|
|
15
|
-
csmSelectInput: FormControl<string | null>;
|
|
16
|
-
private readonly destroy$;
|
|
17
|
-
headerFilters: any;
|
|
18
|
-
userList_req: {};
|
|
19
|
-
users: any;
|
|
20
|
-
userList: any;
|
|
21
|
-
constructor(activeModal: NgbActiveModal, gs: GlobalStateService, service: TicketService, toast: ToastService);
|
|
22
|
-
ngOnInit(): void;
|
|
23
|
-
ngOnDestroy(): void;
|
|
24
|
-
getuserlist(): void;
|
|
25
|
-
assignCsm(): void;
|
|
26
|
-
onCsmSelect(selectedCsm: any): void;
|
|
27
|
-
cancel(): void;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AddCsmModalComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddCsmModalComponent, "lib-add-csm-modal", never, { "ticketId": { "alias": "ticketId"; "required": false; }; }, {}, never, never, false, never>;
|
|
30
|
-
}
|
|
@@ -1,73 +0,0 @@
|
|
|
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
|
-
submitaudit(): void;
|
|
65
|
-
setValue(i: any): any;
|
|
66
|
-
currentGroupNumber: any;
|
|
67
|
-
getGroupNumber(obj: any): number | null;
|
|
68
|
-
resetGroupNumber(): void;
|
|
69
|
-
getFilteredData(count: number): any;
|
|
70
|
-
toggleImage(img_name: any): void;
|
|
71
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuditMappingListComponent, never>;
|
|
72
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AuditMappingListComponent, "lib-audit-mapping-list", never, {}, {}, never, never, false, never>;
|
|
73
|
-
}
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
-
import { GlobalStateService } from 'tango-app-ui-global';
|
|
4
|
-
import dayjs from "dayjs";
|
|
5
|
-
import "dayjs/locale/en";
|
|
6
|
-
import { TicketService } from '../../services/ticket.service';
|
|
7
|
-
import { ToastService } from 'tango-app-ui-shared';
|
|
8
|
-
import { ExcelService } from '../../services/excel.service';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class AuditMetricsComponent implements OnInit, OnDestroy {
|
|
11
|
-
private gs;
|
|
12
|
-
private modalService;
|
|
13
|
-
private service;
|
|
14
|
-
private toast;
|
|
15
|
-
private excel;
|
|
16
|
-
noData: boolean;
|
|
17
|
-
loading: boolean;
|
|
18
|
-
storesData: any;
|
|
19
|
-
activity: any;
|
|
20
|
-
activitylog: any;
|
|
21
|
-
private readonly destroy$;
|
|
22
|
-
headerFilter: any;
|
|
23
|
-
sortColumName: any;
|
|
24
|
-
sortBy: any;
|
|
25
|
-
filterByClient: any;
|
|
26
|
-
filterByStatus: any;
|
|
27
|
-
pagination: any;
|
|
28
|
-
searchTerm: any;
|
|
29
|
-
limit: any;
|
|
30
|
-
offset: any;
|
|
31
|
-
selectedValue: string;
|
|
32
|
-
dayjs: typeof dayjs;
|
|
33
|
-
filterByStore: any;
|
|
34
|
-
totalCount: any;
|
|
35
|
-
selectedTab: any;
|
|
36
|
-
dataObject: any;
|
|
37
|
-
clientList: any;
|
|
38
|
-
selectedType: any;
|
|
39
|
-
constructor(gs: GlobalStateService, modalService: NgbModal, service: TicketService, toast: ToastService, excel: ExcelService);
|
|
40
|
-
ngOnInit(): void;
|
|
41
|
-
metricsList(): void;
|
|
42
|
-
setItemsperPage(): any;
|
|
43
|
-
getclientList(): void;
|
|
44
|
-
ngOnDestroy(): void;
|
|
45
|
-
receiveData(data: any): void;
|
|
46
|
-
onPageChange(pageOffset: any): void;
|
|
47
|
-
onPageSizeChange(pageSize: any): void;
|
|
48
|
-
exportXLSX(): void;
|
|
49
|
-
selectedTabs(data: any): void;
|
|
50
|
-
searchData(): void;
|
|
51
|
-
openBeforecount(value: any): void;
|
|
52
|
-
openAftercount(value: any): void;
|
|
53
|
-
openView(): void;
|
|
54
|
-
openreTrigger(value: any): void;
|
|
55
|
-
statusBadge(value: any): "badge-light-warning" | "badge-light-primary" | "badge-light-success";
|
|
56
|
-
sortData(value: any): void;
|
|
57
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuditMetricsComponent, never>;
|
|
58
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AuditMetricsComponent, "lib-audit-metrics", never, {}, {}, never, never, false, never>;
|
|
59
|
-
}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { NgbModal, NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
-
import { AuditService } from '../../services/audit.service';
|
|
4
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
5
|
-
import { ToastService } from 'tango-app-ui-shared';
|
|
6
|
-
import { Subscription } from 'rxjs';
|
|
7
|
-
import { TimerService } from '../../services/timer.service';
|
|
8
|
-
import { TicketService } from '../../services/ticket.service';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class AuditReportPopupComponent implements OnInit, OnDestroy {
|
|
11
|
-
modalService: NgbModal;
|
|
12
|
-
activeModal: NgbActiveModal;
|
|
13
|
-
private service;
|
|
14
|
-
router: Router;
|
|
15
|
-
private timerService;
|
|
16
|
-
private cd;
|
|
17
|
-
apiservice: AuditService;
|
|
18
|
-
private route;
|
|
19
|
-
private toast;
|
|
20
|
-
Retagjunkcount: any;
|
|
21
|
-
Retagemployeecount: any;
|
|
22
|
-
Retagcustomercount: any;
|
|
23
|
-
demographicCount: any;
|
|
24
|
-
retagjunkdata: any;
|
|
25
|
-
retagemployeedata: any;
|
|
26
|
-
retagcustomerdata: any;
|
|
27
|
-
totalfiles: any;
|
|
28
|
-
auth: boolean;
|
|
29
|
-
submitauth: boolean;
|
|
30
|
-
Errormsg: any;
|
|
31
|
-
selectedType: any;
|
|
32
|
-
confirmerror: any;
|
|
33
|
-
private readonly destroy$;
|
|
34
|
-
timePassed: number;
|
|
35
|
-
subscription: Subscription | null;
|
|
36
|
-
formattedTime: string;
|
|
37
|
-
category: any;
|
|
38
|
-
centralOpsData: any;
|
|
39
|
-
tangoData: any;
|
|
40
|
-
tangoAccuracy: any;
|
|
41
|
-
constructor(modalService: NgbModal, activeModal: NgbActiveModal, service: TicketService, router: Router, timerService: TimerService, cd: ChangeDetectorRef, apiservice: AuditService, route: ActivatedRoute, toast: ToastService);
|
|
42
|
-
ngOnInit(): void;
|
|
43
|
-
setTimer(): void;
|
|
44
|
-
handleGlobalMouseEvent: () => void;
|
|
45
|
-
ngOnDestroy(): void;
|
|
46
|
-
changebrand(): void;
|
|
47
|
-
nextfile(): void;
|
|
48
|
-
closepopup(): void;
|
|
49
|
-
reviewdata(): void;
|
|
50
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuditReportPopupComponent, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AuditReportPopupComponent, "lib-audit-report-popup", never, { "selectedType": { "alias": "selectedType"; "required": false; }; }, {}, never, never, false, never>;
|
|
52
|
-
}
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { ToastService } from 'tango-app-ui-shared';
|
|
3
|
-
import { AuditService } from '../../services/audit.service';
|
|
4
|
-
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
5
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
6
|
-
import { Subscription } from 'rxjs';
|
|
7
|
-
import { TimerService } from '../../services/timer.service';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class AuditRetagComponent implements OnInit, OnDestroy {
|
|
10
|
-
modalService: NgbModal;
|
|
11
|
-
private router;
|
|
12
|
-
private $api;
|
|
13
|
-
private toastr;
|
|
14
|
-
private route;
|
|
15
|
-
private timerService;
|
|
16
|
-
private cd;
|
|
17
|
-
totalfile: number;
|
|
18
|
-
customer: number;
|
|
19
|
-
junk: number;
|
|
20
|
-
employee: number;
|
|
21
|
-
junkimage: any;
|
|
22
|
-
retagimage: any;
|
|
23
|
-
submitvalue: boolean;
|
|
24
|
-
auditmappingdata: any;
|
|
25
|
-
customercount: any;
|
|
26
|
-
junkcount: any;
|
|
27
|
-
employeecount: any;
|
|
28
|
-
employeimage: any;
|
|
29
|
-
filedetails: any;
|
|
30
|
-
auditLoading: boolean;
|
|
31
|
-
selectedType: any;
|
|
32
|
-
private readonly destroy$;
|
|
33
|
-
timePassed: number;
|
|
34
|
-
subscription: Subscription | null;
|
|
35
|
-
formattedTime: string;
|
|
36
|
-
openmodel: boolean;
|
|
37
|
-
category: any;
|
|
38
|
-
handleKeyPress(event: KeyboardEvent): void;
|
|
39
|
-
constructor(modalService: NgbModal, router: Router, $api: AuditService, toastr: ToastService, route: ActivatedRoute, timerService: TimerService, cd: ChangeDetectorRef);
|
|
40
|
-
ngOnInit(): void;
|
|
41
|
-
getAuditConfig(): void;
|
|
42
|
-
setTimer(): void;
|
|
43
|
-
handleGlobalMouseEvent: () => void;
|
|
44
|
-
ngOnDestroy(): void;
|
|
45
|
-
initial_data_loading(): void;
|
|
46
|
-
getmappingdata(): void;
|
|
47
|
-
reviewdata(): void;
|
|
48
|
-
retagallowDrop(event: any): void;
|
|
49
|
-
dragStart(event: any): void;
|
|
50
|
-
dropretag(event: any): void;
|
|
51
|
-
selectretagimage(res: any): void;
|
|
52
|
-
selectgroupimage(res: any): void;
|
|
53
|
-
removeaudit(data: any): void;
|
|
54
|
-
submitaudit(): void;
|
|
55
|
-
viewcategory(data: any): void;
|
|
56
|
-
dropImage(event: any): void;
|
|
57
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuditRetagComponent, never>;
|
|
58
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AuditRetagComponent, "lib-audit-retag", never, {}, {}, never, never, false, never>;
|
|
59
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
2
|
-
import { TicketService } from '../../services/ticket.service';
|
|
3
|
-
import { ToastService } from 'tango-app-ui-shared';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CommentModelComponent {
|
|
6
|
-
private activeModal;
|
|
7
|
-
private service;
|
|
8
|
-
private toast;
|
|
9
|
-
ticketId: any;
|
|
10
|
-
comment: any;
|
|
11
|
-
private readonly destroy$;
|
|
12
|
-
constructor(activeModal: NgbActiveModal, service: TicketService, toast: ToastService);
|
|
13
|
-
cancel(): void;
|
|
14
|
-
commentSubmit(): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CommentModelComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommentModelComponent, "lib-comment-model", never, { "ticketId": { "alias": "ticketId"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { TicketService } from '../../services/ticket.service';
|
|
3
|
-
import { ToastService } from 'tango-app-ui-shared';
|
|
4
|
-
import { ExcelService } from '../../services/excel.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class CountComponent implements OnInit, OnDestroy {
|
|
7
|
-
private Service;
|
|
8
|
-
private toast;
|
|
9
|
-
private excel;
|
|
10
|
-
private cd;
|
|
11
|
-
private readonly destroy$;
|
|
12
|
-
data: any;
|
|
13
|
-
loading: any;
|
|
14
|
-
noData: any;
|
|
15
|
-
auditImages: any;
|
|
16
|
-
constructor(Service: TicketService, toast: ToastService, excel: ExcelService, cd: ChangeDetectorRef);
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
ngOnDestroy(): void;
|
|
19
|
-
getAuditImages(): void;
|
|
20
|
-
exportTable(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CountComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CountComponent, "lib-count", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { TicketService } from '../../services/ticket.service';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CustomSelectComponent implements OnChanges, OnInit {
|
|
5
|
-
private cd;
|
|
6
|
-
private authService;
|
|
7
|
-
onClick(event: MouseEvent): void;
|
|
8
|
-
items: any;
|
|
9
|
-
searchField: string;
|
|
10
|
-
multi: boolean;
|
|
11
|
-
idField: string;
|
|
12
|
-
selectedValues: any;
|
|
13
|
-
disabled: boolean | undefined;
|
|
14
|
-
label: string;
|
|
15
|
-
selected: EventEmitter<any>;
|
|
16
|
-
filteredValues: any;
|
|
17
|
-
showDropdown: boolean;
|
|
18
|
-
searchValue: string;
|
|
19
|
-
instanceId: any;
|
|
20
|
-
constructor(cd: ChangeDetectorRef, authService: TicketService);
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
23
|
-
initializeItems(): void;
|
|
24
|
-
updateSelectedValues(): void;
|
|
25
|
-
openDropdown(event: any): void;
|
|
26
|
-
onInput(event: any): void;
|
|
27
|
-
onSelect(event: any, item: any): void;
|
|
28
|
-
onSelectAll(event: any): void;
|
|
29
|
-
emitSelectedValues(values: any[]): void;
|
|
30
|
-
checkIfAllSelected(): any;
|
|
31
|
-
onItemClick(item: any, event: MouseEvent): void;
|
|
32
|
-
getInitialsFromEmail(email?: string): string;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CustomSelectComponent, never>;
|
|
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>;
|
|
35
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnDestroy, OnInit, ElementRef } from "@angular/core";
|
|
2
|
-
import { GlobalStateService } from "tango-app-ui-global";
|
|
3
|
-
import { TicketService } from "../../services/ticket.service";
|
|
4
|
-
import { ToastService } from "tango-app-ui-shared";
|
|
5
|
-
import { ExcelService } from "../../services/excel.service";
|
|
6
|
-
import { FormBuilder, FormControl } from "@angular/forms";
|
|
7
|
-
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
8
|
-
import { Router } from "@angular/router";
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class FootfallDicComponent implements OnInit, OnDestroy {
|
|
11
|
-
private gs;
|
|
12
|
-
private ticketService;
|
|
13
|
-
private cd;
|
|
14
|
-
private router;
|
|
15
|
-
private toast;
|
|
16
|
-
private modalService;
|
|
17
|
-
private excelservice;
|
|
18
|
-
private fb;
|
|
19
|
-
searchValue: any;
|
|
20
|
-
loading: boolean;
|
|
21
|
-
noData: boolean;
|
|
22
|
-
sortedColumn: any;
|
|
23
|
-
sortDirection: any;
|
|
24
|
-
sortedColumn1: any;
|
|
25
|
-
sortDirection1: any;
|
|
26
|
-
footfallView: boolean;
|
|
27
|
-
headerFilters: any;
|
|
28
|
-
footfallList_req: any;
|
|
29
|
-
form: any;
|
|
30
|
-
selectedRevopsType: FormControl;
|
|
31
|
-
revopsTypeArray: any;
|
|
32
|
-
type: any;
|
|
33
|
-
pendingArray: any;
|
|
34
|
-
actionStatus: FormControl;
|
|
35
|
-
filterForm: any;
|
|
36
|
-
ticketData: any;
|
|
37
|
-
selectedStores: any[];
|
|
38
|
-
allSelected: boolean;
|
|
39
|
-
stores: any[];
|
|
40
|
-
private readonly destroy$;
|
|
41
|
-
constructor(gs: GlobalStateService, ticketService: TicketService, cd: ChangeDetectorRef, router: Router, toast: ToastService, modalService: NgbModal, excelservice: ExcelService, fb: FormBuilder);
|
|
42
|
-
ngOnDestroy(): void;
|
|
43
|
-
ngOnInit(): void;
|
|
44
|
-
getFootfallSummaryData: any;
|
|
45
|
-
getTicketSummary(type: any): void;
|
|
46
|
-
offset: number;
|
|
47
|
-
limit: number;
|
|
48
|
-
isExport: any;
|
|
49
|
-
footfallListData: any;
|
|
50
|
-
totalItems: any;
|
|
51
|
-
paginationSizes: number[];
|
|
52
|
-
getTicketList(): void;
|
|
53
|
-
currentPage: any;
|
|
54
|
-
pageSize: any;
|
|
55
|
-
onPageChange(pageOffset: number): void;
|
|
56
|
-
onPageSizeChange(pageSize: number): void;
|
|
57
|
-
setpageSize(): any;
|
|
58
|
-
searchData(): void;
|
|
59
|
-
exportXLSX(): void;
|
|
60
|
-
onSort(column: string): void;
|
|
61
|
-
storeCount: any;
|
|
62
|
-
searchStoresData(): void;
|
|
63
|
-
StoresSearchValue: any;
|
|
64
|
-
sortOrderStores: any;
|
|
65
|
-
sortValue(column: string): void;
|
|
66
|
-
getStores(): void;
|
|
67
|
-
getTaggedStoresData: any;
|
|
68
|
-
typeChange(event: any): void;
|
|
69
|
-
pendingChange(event: any): void;
|
|
70
|
-
RevopsTypeChange(event: any): void;
|
|
71
|
-
footfalloffset: number;
|
|
72
|
-
footfalllimit: number;
|
|
73
|
-
footfallTicketsData: any;
|
|
74
|
-
storeIdValue: any;
|
|
75
|
-
dataReset(): void;
|
|
76
|
-
dataApply(): void;
|
|
77
|
-
imageUrl: any;
|
|
78
|
-
dataIndexId: any;
|
|
79
|
-
dateString: any;
|
|
80
|
-
footfallNoData: boolean;
|
|
81
|
-
footfallLoading: boolean;
|
|
82
|
-
private lastSelectedTicket;
|
|
83
|
-
hasInitialStoreSynced: boolean;
|
|
84
|
-
addStoreIfNotExists(store: any): void;
|
|
85
|
-
selecteValues: any;
|
|
86
|
-
selectedStatus: any;
|
|
87
|
-
dataStoreView(data?: any): void;
|
|
88
|
-
isCollapsed: boolean;
|
|
89
|
-
toggleSidebar(): void;
|
|
90
|
-
matchedType: any;
|
|
91
|
-
matchedArray: any;
|
|
92
|
-
onFilterApply(): void;
|
|
93
|
-
pageSizeFootfall: any;
|
|
94
|
-
footfallcurrentPage: any;
|
|
95
|
-
onFootfallPageChange(pageOffset: number): void;
|
|
96
|
-
onFootfallPageSizeChange(pageSize: number): void;
|
|
97
|
-
totalItemsFootfall: any;
|
|
98
|
-
setFootfallpageSize(): any;
|
|
99
|
-
footfallMulticurrentPage: any;
|
|
100
|
-
onFootfallMultiPageChange(pageOffset: number): void;
|
|
101
|
-
onFootfallMultiPageSizeChange(pageSize: number): void;
|
|
102
|
-
toggleStoreSelection(store: any): void;
|
|
103
|
-
toggleSelectAll(): void;
|
|
104
|
-
isSelected(store: any): boolean;
|
|
105
|
-
imgtoggleSelectAll(): void;
|
|
106
|
-
selectedImagesList: any[];
|
|
107
|
-
selectedDuplicateImagesList: any[];
|
|
108
|
-
selectedHousekeepingImagesList: any[];
|
|
109
|
-
selectedEmployeeImagesList: any[];
|
|
110
|
-
selectedJunkImagesList: any[];
|
|
111
|
-
junkACCount: any;
|
|
112
|
-
houseKeepingACCount: any;
|
|
113
|
-
employeeACCount: any;
|
|
114
|
-
duplicateACCount: any;
|
|
115
|
-
cloneWithoutSelected(obj: any): any;
|
|
116
|
-
allSelectValue: boolean;
|
|
117
|
-
cloneWithoutSelected1(data: any): any;
|
|
118
|
-
onImageCheckboxChange1(data: any, category: string, parentOriginal?: any): void;
|
|
119
|
-
selectAllValue(): void;
|
|
120
|
-
areAllCheckboxesSelected(): boolean;
|
|
121
|
-
checkedValue: boolean;
|
|
122
|
-
onImageCheckboxChange(data: any, category: string, parentOriginal?: any): void;
|
|
123
|
-
commentText: any;
|
|
124
|
-
submitValue(status?: string, category?: string): void;
|
|
125
|
-
searchTerm: any;
|
|
126
|
-
get filteredStores(): any[];
|
|
127
|
-
onImageError(event: any): void;
|
|
128
|
-
backToNavigation(): void;
|
|
129
|
-
zoomPopup: ElementRef;
|
|
130
|
-
popupvalue: any;
|
|
131
|
-
popupType: any;
|
|
132
|
-
popupOpen(type: any, value: any): void;
|
|
133
|
-
cancel(): void;
|
|
134
|
-
clear(): void;
|
|
135
|
-
ClusterList: any;
|
|
136
|
-
getAllGroups(): void;
|
|
137
|
-
groups: any;
|
|
138
|
-
ongroupSelect(event: any): void;
|
|
139
|
-
getFormattedEntryTime(entryTime: string): string;
|
|
140
|
-
showSelectAllBox(): void;
|
|
141
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FootfallDicComponent, never>;
|
|
142
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FootfallDicComponent, "lib-footfall-dic", never, {}, {}, never, never, false, never>;
|
|
143
|
-
}
|
|
@@ -1,132 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef, OnInit } from "@angular/core";
|
|
2
|
-
import { FormBuilder } from "@angular/forms";
|
|
3
|
-
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
4
|
-
import { GlobalStateService, PageInfoService } from "tango-app-ui-global";
|
|
5
|
-
import { TicketService } from "../../services/ticket.service";
|
|
6
|
-
import { ToastService } from "tango-app-ui-shared";
|
|
7
|
-
import { ActivatedRoute, Router } from "@angular/router";
|
|
8
|
-
import dayjs from "dayjs";
|
|
9
|
-
import "dayjs/locale/en";
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class FootfallDicviewComponent implements OnInit {
|
|
12
|
-
private gs;
|
|
13
|
-
private ticketService;
|
|
14
|
-
private pageInfo;
|
|
15
|
-
private cd;
|
|
16
|
-
private router;
|
|
17
|
-
private route;
|
|
18
|
-
private toast;
|
|
19
|
-
private modalService;
|
|
20
|
-
private fb;
|
|
21
|
-
dayjs: typeof dayjs;
|
|
22
|
-
filterForm: any;
|
|
23
|
-
form: any;
|
|
24
|
-
paginationSizes: number[];
|
|
25
|
-
selectedRevopsType: any;
|
|
26
|
-
revopsTypeArray: any;
|
|
27
|
-
type: any;
|
|
28
|
-
pendingArray: any;
|
|
29
|
-
storeCount: any;
|
|
30
|
-
constructor(gs: GlobalStateService, ticketService: TicketService, pageInfo: PageInfoService, cd: ChangeDetectorRef, router: Router, route: ActivatedRoute, toast: ToastService, modalService: NgbModal, fb: FormBuilder);
|
|
31
|
-
selectedStores: any[];
|
|
32
|
-
allSelected: boolean;
|
|
33
|
-
stores: any[];
|
|
34
|
-
selectedDateRange: any;
|
|
35
|
-
selectedDate: any;
|
|
36
|
-
isCustomDate: any;
|
|
37
|
-
private readonly destroy$;
|
|
38
|
-
ticketDataList: any;
|
|
39
|
-
setPageData(): void;
|
|
40
|
-
users: any;
|
|
41
|
-
ngOnInit(): void;
|
|
42
|
-
headDate: any;
|
|
43
|
-
headDateEnd: any;
|
|
44
|
-
datechange(event: any): void;
|
|
45
|
-
onStartDateChange(event: any): void;
|
|
46
|
-
resetValidation(): void;
|
|
47
|
-
ClusterList: any;
|
|
48
|
-
client: any;
|
|
49
|
-
getAllGroups(): void;
|
|
50
|
-
groups: any;
|
|
51
|
-
ongroupSelect(event: any): void;
|
|
52
|
-
searchStoresData(): void;
|
|
53
|
-
StoresSearchValue: any;
|
|
54
|
-
sortOrderStores: any;
|
|
55
|
-
sortedColumn1: any;
|
|
56
|
-
sortDirection1: any;
|
|
57
|
-
sortValue(column: string): void;
|
|
58
|
-
getStores(): void;
|
|
59
|
-
toggleStoreSelection(store: any): void;
|
|
60
|
-
toggleSelectAll(): void;
|
|
61
|
-
isSelected(store: any): boolean;
|
|
62
|
-
backToNavigation(): void;
|
|
63
|
-
cancel(): void;
|
|
64
|
-
clear(): void;
|
|
65
|
-
ticketData: any;
|
|
66
|
-
imgtoggleSelectAll(): void;
|
|
67
|
-
selectedImagesList: any[];
|
|
68
|
-
selectedDuplicateImagesList: any[];
|
|
69
|
-
selectedHousekeepingImagesList: any[];
|
|
70
|
-
selectedEmployeeImagesList: any[];
|
|
71
|
-
houseKeepingACCount: any;
|
|
72
|
-
employeeACCount: any;
|
|
73
|
-
duplicateACCount: any;
|
|
74
|
-
junkACCount: any;
|
|
75
|
-
selectedJunkImagesList: any[];
|
|
76
|
-
cloneWithoutSelected(obj: any): any;
|
|
77
|
-
allSelectValue: boolean;
|
|
78
|
-
cloneWithoutSelected1(data: any): any;
|
|
79
|
-
onImageCheckboxChange1(data: any, category: string, parentOriginal?: any): void;
|
|
80
|
-
selectAllValue(): void;
|
|
81
|
-
areAllCheckboxesSelected(): boolean;
|
|
82
|
-
checkedValue: boolean;
|
|
83
|
-
onImageCheckboxChange(data: any, category: string, parentOriginal?: any): void;
|
|
84
|
-
commentText: any;
|
|
85
|
-
submitValue(status?: string, category?: string): void;
|
|
86
|
-
searchTerm: any;
|
|
87
|
-
get filteredStores(): any[];
|
|
88
|
-
onImageError(event: any): void;
|
|
89
|
-
isCollapsed: boolean;
|
|
90
|
-
toggleSidebar(): void;
|
|
91
|
-
matchedType: any;
|
|
92
|
-
matchedArray: any;
|
|
93
|
-
onFilterApply(): void;
|
|
94
|
-
pageSizeFootfall: any;
|
|
95
|
-
footfallcurrentPage: any;
|
|
96
|
-
onFootfallPageChange(pageOffset: number): void;
|
|
97
|
-
onFootfallPageSizeChange(pageSize: number): void;
|
|
98
|
-
totalItemsFootfall: any;
|
|
99
|
-
setFootfallpageSize(): any;
|
|
100
|
-
footfallMulticurrentPage: any;
|
|
101
|
-
onFootfallMultiPageChange(pageOffset: number): void;
|
|
102
|
-
onFootfallMultiPageSizeChange(pageSize: number): void;
|
|
103
|
-
typeChange(event: any): void;
|
|
104
|
-
pendingChange(event: any): void;
|
|
105
|
-
RevopsTypeChange(event: any): void;
|
|
106
|
-
footfalloffset: number;
|
|
107
|
-
footfalllimit: number;
|
|
108
|
-
footfallTicketsData: any;
|
|
109
|
-
storeIdValue: any;
|
|
110
|
-
dataReset(): void;
|
|
111
|
-
dataApply(): void;
|
|
112
|
-
imageUrl: any;
|
|
113
|
-
dataIndexId: any;
|
|
114
|
-
dateString: any;
|
|
115
|
-
footfallNoData: boolean;
|
|
116
|
-
footfallLoading: boolean;
|
|
117
|
-
private lastSelectedTicket;
|
|
118
|
-
hasInitialStoreSynced: boolean;
|
|
119
|
-
addStoreIfNotExists(store: any): void;
|
|
120
|
-
selecteValues: any;
|
|
121
|
-
selectedStatus: any;
|
|
122
|
-
dataStoreView(data?: any): void;
|
|
123
|
-
zoomPopup: ElementRef;
|
|
124
|
-
popupvalue: any;
|
|
125
|
-
popupType: any;
|
|
126
|
-
popupOpen(type: any, value: any): void;
|
|
127
|
-
getFormattedEntryTime(entryTime: string): string;
|
|
128
|
-
showSelectAllBox(): void;
|
|
129
|
-
scrollToStore(store: any): void;
|
|
130
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FootfallDicviewComponent, never>;
|
|
131
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FootfallDicviewComponent, "lib-footfall-dicview", never, {}, {}, never, never, false, never>;
|
|
132
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
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
|
-
}
|