tango-app-ui-manage-tickets 3.7.0-beta.6 → 3.7.0-beta.61
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 +520 -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 +489 -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 +761 -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 +494 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.html +4743 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.scss +1208 -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 +3344 -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-metrics/audit-metrics.component.mjs +0 -298
- 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/footfall-dic/footfall-dic.component.mjs +0 -894
- 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/tango-manage-tickets/tango-manage-tickets.component.mjs +0 -127
- package/esm2022/lib/components/tickets/tickets.component.mjs +0 -793
- package/esm2022/lib/services/excel.service.mjs +0 -45
- package/esm2022/lib/services/ticket.service.mjs +0 -158
- package/esm2022/lib/tango-manage-tickets-routing.module.mjs +0 -24
- package/esm2022/lib/tango-manage-tickets.module.mjs +0 -54
- 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 -2914
- 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-metrics/audit-metrics.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/footfall-dic/footfall-dic.component.d.ts +0 -130
- 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/tango-manage-tickets/tango-manage-tickets.component.d.ts +0 -27
- package/lib/components/tickets/tickets.component.d.ts +0 -84
- package/lib/services/excel.service.d.ts +0 -10
- package/lib/services/ticket.service.d.ts +0 -49
- package/lib/tango-manage-tickets-routing.module.d.ts +0 -7
- package/lib/tango-manage-tickets.module.d.ts +0 -21
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,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-success" | "badge-light-warning" | "badge-light-primary";
|
|
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,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,130 +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 * as i0 from "@angular/core";
|
|
9
|
-
export declare class FootfallDicComponent implements OnInit, OnDestroy {
|
|
10
|
-
private gs;
|
|
11
|
-
private ticketService;
|
|
12
|
-
private cd;
|
|
13
|
-
private toast;
|
|
14
|
-
private modalService;
|
|
15
|
-
private excelservice;
|
|
16
|
-
private fb;
|
|
17
|
-
searchValue: any;
|
|
18
|
-
loading: boolean;
|
|
19
|
-
noData: boolean;
|
|
20
|
-
sortedColumn: any;
|
|
21
|
-
sortDirection: any;
|
|
22
|
-
footfallView: boolean;
|
|
23
|
-
headerFilters: any;
|
|
24
|
-
footfallList_req: any;
|
|
25
|
-
form: any;
|
|
26
|
-
selectedRevopsType: FormControl;
|
|
27
|
-
revopsTypeArray: any;
|
|
28
|
-
type: any;
|
|
29
|
-
pendingArray: any;
|
|
30
|
-
actionStatus: FormControl;
|
|
31
|
-
filterForm: any;
|
|
32
|
-
ticketData: any;
|
|
33
|
-
selectedStores: any[];
|
|
34
|
-
allSelected: boolean;
|
|
35
|
-
stores: any[];
|
|
36
|
-
private readonly destroy$;
|
|
37
|
-
constructor(gs: GlobalStateService, ticketService: TicketService, cd: ChangeDetectorRef, toast: ToastService, modalService: NgbModal, excelservice: ExcelService, fb: FormBuilder);
|
|
38
|
-
ngOnDestroy(): void;
|
|
39
|
-
ngOnInit(): void;
|
|
40
|
-
getFootfallSummaryData: any;
|
|
41
|
-
getTicketSummary(): void;
|
|
42
|
-
offset: number;
|
|
43
|
-
limit: number;
|
|
44
|
-
isExport: any;
|
|
45
|
-
footfallListData: any;
|
|
46
|
-
totalItems: any;
|
|
47
|
-
paginationSizes: number[];
|
|
48
|
-
getTicketList(): void;
|
|
49
|
-
currentPage: any;
|
|
50
|
-
pageSize: any;
|
|
51
|
-
onPageChange(pageOffset: number): void;
|
|
52
|
-
onPageSizeChange(pageSize: number): void;
|
|
53
|
-
setpageSize(): any;
|
|
54
|
-
searchData(): void;
|
|
55
|
-
exportXLSX(): void;
|
|
56
|
-
onSort(column: string): void;
|
|
57
|
-
storeCount: any;
|
|
58
|
-
searchStoresData(): void;
|
|
59
|
-
StoresSearchValue: any;
|
|
60
|
-
getStores(): void;
|
|
61
|
-
getTaggedStoresData: any;
|
|
62
|
-
typeChange(event: any): void;
|
|
63
|
-
pendingChange(event: any): void;
|
|
64
|
-
RevopsTypeChange(event: any): void;
|
|
65
|
-
footfalloffset: number;
|
|
66
|
-
footfalllimit: number;
|
|
67
|
-
footfallTicketsData: any;
|
|
68
|
-
storeIdValue: any;
|
|
69
|
-
dataReset(): void;
|
|
70
|
-
dataApply(): void;
|
|
71
|
-
imageUrl: any;
|
|
72
|
-
dataIndexId: any;
|
|
73
|
-
dateString: any;
|
|
74
|
-
footfallNoData: boolean;
|
|
75
|
-
footfallLoading: boolean;
|
|
76
|
-
private lastSelectedTicket;
|
|
77
|
-
hasInitialStoreSynced: boolean;
|
|
78
|
-
addStoreIfNotExists(store: any): void;
|
|
79
|
-
selecteValues: any;
|
|
80
|
-
dataStoreView(data?: any): void;
|
|
81
|
-
isCollapsed: boolean;
|
|
82
|
-
toggleSidebar(): void;
|
|
83
|
-
matchedType: any;
|
|
84
|
-
matchedArray: any;
|
|
85
|
-
onFilterApply(): void;
|
|
86
|
-
pageSizeFootfall: any;
|
|
87
|
-
footfallcurrentPage: any;
|
|
88
|
-
onFootfallPageChange(pageOffset: number): void;
|
|
89
|
-
onFootfallPageSizeChange(pageSize: number): void;
|
|
90
|
-
totalItemsFootfall: any;
|
|
91
|
-
setFootfallpageSize(): any;
|
|
92
|
-
toggleStoreSelection(store: any): void;
|
|
93
|
-
toggleSelectAll(): void;
|
|
94
|
-
isSelected(store: any): boolean;
|
|
95
|
-
imgtoggleSelectAll(): void;
|
|
96
|
-
selectedImagesList: any[];
|
|
97
|
-
selectedDuplicateImagesList: any[];
|
|
98
|
-
selectedHousekeepingImagesList: any[];
|
|
99
|
-
selectedEmployeeImagesList: any[];
|
|
100
|
-
houseKeepingACCount: any;
|
|
101
|
-
employeeACCount: any;
|
|
102
|
-
duplicateACCount: any;
|
|
103
|
-
cloneWithoutSelected(obj: any): any;
|
|
104
|
-
allSelectValue: boolean;
|
|
105
|
-
cloneWithoutSelected1(data: any): any;
|
|
106
|
-
onImageCheckboxChange1(data: any, category: string, parentOriginal?: any): void;
|
|
107
|
-
selectAllValue(): void;
|
|
108
|
-
areAllCheckboxesSelected(): boolean;
|
|
109
|
-
checkedValue: boolean;
|
|
110
|
-
onImageCheckboxChange(data: any, category: string, parentOriginal?: any): void;
|
|
111
|
-
commentText: any;
|
|
112
|
-
submitValue(status?: string, category?: string): void;
|
|
113
|
-
searchTerm: any;
|
|
114
|
-
get filteredStores(): any[];
|
|
115
|
-
onImageError(event: any): void;
|
|
116
|
-
backToNavigation(): void;
|
|
117
|
-
zoomPopup: ElementRef;
|
|
118
|
-
popupvalue: any;
|
|
119
|
-
popupType: any;
|
|
120
|
-
popupOpen(type: any, value: any): void;
|
|
121
|
-
cancel(): void;
|
|
122
|
-
ClusterList: any;
|
|
123
|
-
getAllGroups(): void;
|
|
124
|
-
groups: any;
|
|
125
|
-
ongroupSelect(event: any): void;
|
|
126
|
-
getFormattedEntryTime(entryTime: string): string;
|
|
127
|
-
showSelectAllBox(): void;
|
|
128
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FootfallDicComponent, never>;
|
|
129
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FootfallDicComponent, "lib-footfall-dic", never, {}, {}, never, never, false, never>;
|
|
130
|
-
}
|
|
@@ -1,33 +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 GroupSelectComponent implements OnInit, OnChanges {
|
|
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
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GroupSelectComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GroupSelectComponent, "lib-group-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>;
|
|
33
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
-
import { TicketService } from '../../services/ticket.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ReTriggerComponent implements OnInit, OnDestroy {
|
|
6
|
-
activeModal: NgbActiveModal;
|
|
7
|
-
private service;
|
|
8
|
-
dropDown: boolean;
|
|
9
|
-
loading: boolean;
|
|
10
|
-
noData: boolean;
|
|
11
|
-
dropdownItems: any[];
|
|
12
|
-
selectedItem: any;
|
|
13
|
-
selectedData: any;
|
|
14
|
-
standardData: any;
|
|
15
|
-
Comment: any;
|
|
16
|
-
userId: any;
|
|
17
|
-
private readonly destroy$;
|
|
18
|
-
reTrigerData: any;
|
|
19
|
-
userList: any;
|
|
20
|
-
constructor(activeModal: NgbActiveModal, service: TicketService);
|
|
21
|
-
onClick(event: MouseEvent): void;
|
|
22
|
-
ngOnInit(): void;
|
|
23
|
-
getuserList(): void;
|
|
24
|
-
ngOnDestroy(): void;
|
|
25
|
-
selectRadio(value: any): void;
|
|
26
|
-
openDropdown(event: MouseEvent): void;
|
|
27
|
-
selectItem(value: any): void;
|
|
28
|
-
onReportSelect(event: any): void;
|
|
29
|
-
closeModal(): void;
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ReTriggerComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReTriggerComponent, "lib-retrigger", never, { "reTrigerData": { "alias": "reTrigerData"; "required": false; }; }, {}, never, never, false, never>;
|
|
32
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { TicketService } from '../../services/ticket.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ReactiveSelectComponent implements ControlValueAccessor, OnInit {
|
|
6
|
-
private apiService;
|
|
7
|
-
private cd;
|
|
8
|
-
private onTouched;
|
|
9
|
-
private onChanged;
|
|
10
|
-
isDisabled: boolean;
|
|
11
|
-
idField: string;
|
|
12
|
-
nameField: string;
|
|
13
|
-
label: string;
|
|
14
|
-
data: any;
|
|
15
|
-
itemChange: EventEmitter<any>;
|
|
16
|
-
protected isOpened: boolean;
|
|
17
|
-
protected selected: Record<string, any> | null;
|
|
18
|
-
protected selectedId: string | number;
|
|
19
|
-
instanceId: string;
|
|
20
|
-
constructor(apiService: TicketService, cd: ChangeDetectorRef);
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
writeValue(val: string | number): void;
|
|
23
|
-
registerOnChange(fn: any): void;
|
|
24
|
-
registerOnTouched(fn: any): void;
|
|
25
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
26
|
-
onSelect(item: Record<string, any>): void;
|
|
27
|
-
onClick(event: MouseEvent): void;
|
|
28
|
-
isComponentClicked(targetElement: HTMLElement): boolean;
|
|
29
|
-
openDropdown(): void;
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ReactiveSelectComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReactiveSelectComponent, "lib-reactive-select", never, { "isDisabled": { "alias": "isDisabled"; "required": false; }; "idField": { "alias": "idField"; "required": false; }; "nameField": { "alias": "nameField"; "required": false; }; "label": { "alias": "label"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "itemChange": "itemChange"; }, never, never, false, never>;
|
|
32
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
-
import { GlobalStateService, PageInfoService } from 'tango-app-ui-global';
|
|
4
|
-
import { TicketService } from '../../services/ticket.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class TangoManageTicketsComponent implements OnInit, OnDestroy {
|
|
7
|
-
private pageInfo;
|
|
8
|
-
private route;
|
|
9
|
-
private router;
|
|
10
|
-
gs: GlobalStateService;
|
|
11
|
-
private service;
|
|
12
|
-
SelectedTab: any;
|
|
13
|
-
private readonly destroy$;
|
|
14
|
-
headerFilters: any;
|
|
15
|
-
ticketAllCount: any;
|
|
16
|
-
users: any;
|
|
17
|
-
constructor(pageInfo: PageInfoService, route: ActivatedRoute, router: Router, gs: GlobalStateService, service: TicketService);
|
|
18
|
-
ngOnInit(): void;
|
|
19
|
-
updateStoreIdQueryParam(): void;
|
|
20
|
-
setPageData(): void;
|
|
21
|
-
Selectedtabs(value: any): void;
|
|
22
|
-
ngOnDestroy(): void;
|
|
23
|
-
onLoad(): void;
|
|
24
|
-
getAllCount(): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TangoManageTicketsComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TangoManageTicketsComponent, "lib-tango-manage-tickets", never, {}, {}, never, never, false, never>;
|
|
27
|
-
}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnDestroy, OnInit } from "@angular/core";
|
|
2
|
-
import { ActivatedRoute, Router } from "@angular/router";
|
|
3
|
-
import { GlobalStateService } from "tango-app-ui-global";
|
|
4
|
-
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
5
|
-
import { TicketService } from "../../services/ticket.service";
|
|
6
|
-
import { ExcelService } from '../../services/excel.service';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class TicketsComponent implements OnInit, OnDestroy {
|
|
9
|
-
private cd;
|
|
10
|
-
private router;
|
|
11
|
-
private route;
|
|
12
|
-
gs: GlobalStateService;
|
|
13
|
-
private modalService;
|
|
14
|
-
private service;
|
|
15
|
-
private excelservice;
|
|
16
|
-
type: string;
|
|
17
|
-
searchValue: any;
|
|
18
|
-
selectedTab: any;
|
|
19
|
-
itemsPerPage: number;
|
|
20
|
-
currentPage: number;
|
|
21
|
-
totalItems: number;
|
|
22
|
-
paginationSizes: number[];
|
|
23
|
-
pageSize: number;
|
|
24
|
-
private readonly destroy$;
|
|
25
|
-
assignTicket: boolean;
|
|
26
|
-
filterByStores: any;
|
|
27
|
-
filterByinstalled: any;
|
|
28
|
-
filterByStatus: any;
|
|
29
|
-
filterByQueryType: any;
|
|
30
|
-
issueType: any;
|
|
31
|
-
sortedColumn: string;
|
|
32
|
-
sortDirection: number;
|
|
33
|
-
headerFilters: any;
|
|
34
|
-
userList_req: any;
|
|
35
|
-
userList: any;
|
|
36
|
-
dataObject: any;
|
|
37
|
-
storeList: any;
|
|
38
|
-
statusType: {
|
|
39
|
-
text: string;
|
|
40
|
-
id: string;
|
|
41
|
-
}[];
|
|
42
|
-
typeName: string;
|
|
43
|
-
users: any;
|
|
44
|
-
limit: number;
|
|
45
|
-
offset: number;
|
|
46
|
-
sortBy: any;
|
|
47
|
-
sortColumName: any;
|
|
48
|
-
listArray: any;
|
|
49
|
-
tableListArray: any;
|
|
50
|
-
loading: boolean;
|
|
51
|
-
noData: boolean;
|
|
52
|
-
selectAll: any;
|
|
53
|
-
assignStores: any;
|
|
54
|
-
issueTypeList: any;
|
|
55
|
-
queryTypeList: any;
|
|
56
|
-
constructor(cd: ChangeDetectorRef, router: Router, route: ActivatedRoute, gs: GlobalStateService, modalService: NgbModal, service: TicketService, excelservice: ExcelService);
|
|
57
|
-
ngOnInit(): void;
|
|
58
|
-
getInitload(): void;
|
|
59
|
-
getstoreFilter(): void;
|
|
60
|
-
getuserlist(): void;
|
|
61
|
-
ngOnDestroy(): void;
|
|
62
|
-
searchData(): void;
|
|
63
|
-
onSort(column: string): void;
|
|
64
|
-
exportXLSX(): void;
|
|
65
|
-
selectedTabs(type: any): void;
|
|
66
|
-
transformName(name: string): string;
|
|
67
|
-
onPageChange(pageOffset: number): void;
|
|
68
|
-
onPageSizeChange(pageSize: number): void;
|
|
69
|
-
selectAllStore(event: any): void;
|
|
70
|
-
updateCheck(event: any, ticketId: any): void;
|
|
71
|
-
addAssignTicket(): void;
|
|
72
|
-
applyFilters(event: any): void;
|
|
73
|
-
getTable(): void;
|
|
74
|
-
routeToStore(storeId: any, clientId: any): void;
|
|
75
|
-
routeToMat(storeId: any, clientId: any, clientName: any): void;
|
|
76
|
-
commentModal(obj: any): void;
|
|
77
|
-
tickets(type: any, clientId: any, storeId: any, clientName: any): void;
|
|
78
|
-
clientTickets(clientId: any, storeId: any, clientName: any): void;
|
|
79
|
-
storeTickets(clientId: any, storeId: any, clientName: any): void;
|
|
80
|
-
userTickets(clientId: any, storeId: any): void;
|
|
81
|
-
setpageSize(): number;
|
|
82
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TicketsComponent, never>;
|
|
83
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TicketsComponent, "lib-tickets", never, {}, {}, never, never, false, never>;
|
|
84
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class ExcelService {
|
|
3
|
-
constructor();
|
|
4
|
-
exportAsExcelFile(json: any[], excelFileName: string): void;
|
|
5
|
-
saveAsExcelFile(buffer: any, fileName: string): void;
|
|
6
|
-
private saveAsTemplate;
|
|
7
|
-
saveAsZipFile(buffer: any, fileName: string): void;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ExcelService, never>;
|
|
9
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ExcelService>;
|
|
10
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { GlobalStateService } from 'tango-app-ui-global';
|
|
3
|
-
import { BehaviorSubject, Observable } from "rxjs";
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class TicketService {
|
|
6
|
-
private http;
|
|
7
|
-
private gs;
|
|
8
|
-
userApiUrl: any;
|
|
9
|
-
ticketsApiUrl: any;
|
|
10
|
-
auditApiUrl: any;
|
|
11
|
-
auditmetricApiUrl: any;
|
|
12
|
-
zoneauditApiUrl: any;
|
|
13
|
-
footfallDirapiUrl: any;
|
|
14
|
-
footfallCDN: any;
|
|
15
|
-
trafficApiUrl: any;
|
|
16
|
-
dropDownTrigger: BehaviorSubject<any>;
|
|
17
|
-
constructor(http: HttpClient, gs: GlobalStateService);
|
|
18
|
-
getUserList(params: any): Observable<any>;
|
|
19
|
-
exportInstallationList(data: any): Observable<ArrayBuffer>;
|
|
20
|
-
exportInfraList(data: any): Observable<ArrayBuffer>;
|
|
21
|
-
exportMatList(data: any): Observable<ArrayBuffer>;
|
|
22
|
-
getSotresList(data: any): Observable<any>;
|
|
23
|
-
getInstallationList(data: any): Observable<any>;
|
|
24
|
-
getInfraList(data: any): Observable<any>;
|
|
25
|
-
getAssignTicket(data: any): Observable<any>;
|
|
26
|
-
getMatList(data: any): Observable<any>;
|
|
27
|
-
updateTicketIssue(data: any): Observable<any>;
|
|
28
|
-
getUserActiveList(params: any): Observable<any>;
|
|
29
|
-
getDataMismathList(data: any): Observable<any>;
|
|
30
|
-
exportDataMismatchList(data: any): Observable<ArrayBuffer>;
|
|
31
|
-
getAllCounts(data: any): Observable<any>;
|
|
32
|
-
getstoreMetrics(data: any): Observable<Object>;
|
|
33
|
-
getstoreMetricsExport(data: any): Observable<ArrayBuffer>;
|
|
34
|
-
getclientList(): Observable<Object>;
|
|
35
|
-
getuserList(): Observable<Object>;
|
|
36
|
-
auditretrigger(data: any): Observable<Object>;
|
|
37
|
-
getstoreList(data: any): Observable<Object>;
|
|
38
|
-
getAuditImages(data: any): Observable<Object>;
|
|
39
|
-
ExportAuditImagesasxlsx(data: any): Observable<ArrayBuffer>;
|
|
40
|
-
getTicketSummaryApi(client: any, fromDate: any, toDate: any): Observable<any>;
|
|
41
|
-
getTicketListApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any): Observable<any>;
|
|
42
|
-
getTicketListExportApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any): Observable<any>;
|
|
43
|
-
getTicketsApi(store: any, fromDate: any, toDate: any, revopsType: any, status: any, action: any, offset: any, limit: any): Observable<any>;
|
|
44
|
-
getTaggedStoresApi(client: any, fromDate: any, toDate: any, searchValue: any, clusters: any): Observable<any>;
|
|
45
|
-
getUpdateStatusApi(data: any): Observable<any>;
|
|
46
|
-
getclusters(data: any): Observable<Object>;
|
|
47
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TicketService, never>;
|
|
48
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<TicketService>;
|
|
49
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/router";
|
|
3
|
-
export declare class TangoManageTicketsRoutingModule {
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TangoManageTicketsRoutingModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TangoManageTicketsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TangoManageTicketsRoutingModule>;
|
|
7
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./components/tango-manage-tickets/tango-manage-tickets.component";
|
|
3
|
-
import * as i2 from "./components/tickets/tickets.component";
|
|
4
|
-
import * as i3 from "./components/add-csm-modal/add-csm-modal.component";
|
|
5
|
-
import * as i4 from "./components/comment-model/comment-model.component";
|
|
6
|
-
import * as i5 from "./components/audit-metrics/audit-metrics.component";
|
|
7
|
-
import * as i6 from "./components/re-trigger/re-trigger.component";
|
|
8
|
-
import * as i7 from "./components/audit-log/audit-log.component";
|
|
9
|
-
import * as i8 from "./components/count/count.component";
|
|
10
|
-
import * as i9 from "./components/footfall-dic/footfall-dic.component";
|
|
11
|
-
import * as i10 from "./components/reactive-select/reactive-select.component";
|
|
12
|
-
import * as i11 from "./components/group-select/group-select.component";
|
|
13
|
-
import * as i12 from "@angular/common";
|
|
14
|
-
import * as i13 from "./tango-manage-tickets-routing.module";
|
|
15
|
-
import * as i14 from "@angular/forms";
|
|
16
|
-
import * as i15 from "tango-app-ui-shared";
|
|
17
|
-
export declare class TangoManageTicketsModule {
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TangoManageTicketsModule, never>;
|
|
19
|
-
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.CommonModule, typeof i13.TangoManageTicketsRoutingModule, typeof i14.FormsModule, typeof i14.ReactiveFormsModule, typeof i15.CommonSharedModule], never>;
|
|
20
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TangoManageTicketsModule>;
|
|
21
|
-
}
|