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
|
@@ -1,88 +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
|
-
ClusterList: any[];
|
|
57
|
-
filterByCluster: any[];
|
|
58
|
-
showClusterFilter: boolean;
|
|
59
|
-
constructor(cd: ChangeDetectorRef, router: Router, route: ActivatedRoute, gs: GlobalStateService, modalService: NgbModal, service: TicketService, excelservice: ExcelService);
|
|
60
|
-
ngOnInit(): void;
|
|
61
|
-
getInitload(): void;
|
|
62
|
-
getstoreFilter(): void;
|
|
63
|
-
getuserlist(): void;
|
|
64
|
-
ngOnDestroy(): void;
|
|
65
|
-
searchData(): void;
|
|
66
|
-
onSort(column: string): void;
|
|
67
|
-
exportXLSX(): void;
|
|
68
|
-
selectedTabs(type: any): void;
|
|
69
|
-
transformName(name: string): string;
|
|
70
|
-
onPageChange(pageOffset: number): void;
|
|
71
|
-
onPageSizeChange(pageSize: number): void;
|
|
72
|
-
selectAllStore(event: any): void;
|
|
73
|
-
getAllGroups(): void;
|
|
74
|
-
updateCheck(event: any, ticketId: any): void;
|
|
75
|
-
addAssignTicket(): void;
|
|
76
|
-
applyFilters(event: any): void;
|
|
77
|
-
getTable(): void;
|
|
78
|
-
routeToStore(storeId: any, clientId: any): void;
|
|
79
|
-
routeToMat(storeId: any, clientId: any, clientName: any): void;
|
|
80
|
-
commentModal(obj: any): void;
|
|
81
|
-
tickets(type: any, clientId: any, storeId: any, clientName: any): void;
|
|
82
|
-
clientTickets(clientId: any, storeId: any, clientName: any): void;
|
|
83
|
-
storeTickets(clientId: any, storeId: any, clientName: any): void;
|
|
84
|
-
userTickets(clientId: any, storeId: any): void;
|
|
85
|
-
setpageSize(): number;
|
|
86
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TicketsComponent, never>;
|
|
87
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TicketsComponent, "lib-tickets", never, {}, {}, never, never, false, never>;
|
|
88
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
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
|
-
footfallDirapiUrl: any;
|
|
22
|
-
dropDownTrigger: BehaviorSubject<any>;
|
|
23
|
-
constructor(http: HttpClient, gs: GlobalStateService);
|
|
24
|
-
getAuditMapping(payload: any): Observable<Object>;
|
|
25
|
-
getAuditconfig(clientId: any): Observable<Object>;
|
|
26
|
-
export(data: any): Observable<ArrayBuffer>;
|
|
27
|
-
getauditCard(filter: any, user: any): Observable<Object>;
|
|
28
|
-
getactivitylog(data: any): Observable<Object>;
|
|
29
|
-
saveDraft(data: any): Observable<Object>;
|
|
30
|
-
getAuditmappinglist(payload: any): Observable<Object>;
|
|
31
|
-
saveaudit(data: any): Observable<Object>;
|
|
32
|
-
userDetails(): Observable<any>;
|
|
33
|
-
private handleError;
|
|
34
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuditService, never>;
|
|
35
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AuditService>;
|
|
36
|
-
}
|
|
@@ -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,87 +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
|
-
revopApiUrl: any;
|
|
17
|
-
clientApiUrl: any;
|
|
18
|
-
vmsAuditUrl: any;
|
|
19
|
-
dropDownTrigger: BehaviorSubject<any>;
|
|
20
|
-
constructor(http: HttpClient, gs: GlobalStateService);
|
|
21
|
-
getUserList(params: any): Observable<any>;
|
|
22
|
-
exportInstallationList(data: any): Observable<ArrayBuffer>;
|
|
23
|
-
exportInfraList(data: any): Observable<ArrayBuffer>;
|
|
24
|
-
exportMatList(data: any): Observable<ArrayBuffer>;
|
|
25
|
-
getSotresList(data: any): Observable<any>;
|
|
26
|
-
getInstallationList(data: any): Observable<any>;
|
|
27
|
-
getInfraList(data: any): Observable<any>;
|
|
28
|
-
getAssignTicket(data: any): Observable<any>;
|
|
29
|
-
getMatList(data: any): Observable<any>;
|
|
30
|
-
updateTicketIssue(data: any): Observable<any>;
|
|
31
|
-
getUserActiveList(params: any): Observable<any>;
|
|
32
|
-
getAllCounts(data: any): Observable<any>;
|
|
33
|
-
getstoreMetrics(data: any): Observable<Object>;
|
|
34
|
-
getstoreMetricsExport(data: any): Observable<ArrayBuffer>;
|
|
35
|
-
getclientList(): Observable<Object>;
|
|
36
|
-
getuserList(): Observable<Object>;
|
|
37
|
-
auditretrigger(data: any): Observable<Object>;
|
|
38
|
-
getfootfallcount(data: any): Observable<Object>;
|
|
39
|
-
getstoreList(data: any): Observable<Object>;
|
|
40
|
-
checkTicketExists(data: any): Observable<Object>;
|
|
41
|
-
mergeticket(data: any): Observable<Object>;
|
|
42
|
-
getDataMismathList(data: any): Observable<any>;
|
|
43
|
-
accuracyReasonsupdate(data: any): Observable<any>;
|
|
44
|
-
exportDataMismatchList(data: any): Observable<ArrayBuffer>;
|
|
45
|
-
getAuditImages(data: any): Observable<Object>;
|
|
46
|
-
ExportAuditImagesasxlsx(data: any): Observable<ArrayBuffer>;
|
|
47
|
-
getTicketSummaryApi(client: any, fromDate: any, toDate: any, tangoType: any, permissionType?: string | null): Observable<any>;
|
|
48
|
-
accuracyReasons(client: any): Observable<any>;
|
|
49
|
-
getTicketListOldApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any): Observable<any>;
|
|
50
|
-
getTicketListApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any, tangoType: any, permissionType?: string | null, filters?: {
|
|
51
|
-
filterByStatus: any[];
|
|
52
|
-
filterByReviewer: any | null;
|
|
53
|
-
filterByApprover: any | null;
|
|
54
|
-
filterByTango: any | null;
|
|
55
|
-
filterByReviewedBy: any[];
|
|
56
|
-
fileterByApprovedBy: any[];
|
|
57
|
-
}): Observable<any>;
|
|
58
|
-
getTicketListExportOldApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any): Observable<any>;
|
|
59
|
-
getTicketListExportApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any, tangoType: any, permissionType?: string | null, filters?: {
|
|
60
|
-
filterByStatus?: string[];
|
|
61
|
-
filterByReviewer?: string | null;
|
|
62
|
-
filterByApprover?: string | null;
|
|
63
|
-
filterByTango?: string | null;
|
|
64
|
-
filterByReviewedBy?: string[];
|
|
65
|
-
fileterByApprovedBy?: string[];
|
|
66
|
-
}): Observable<any>;
|
|
67
|
-
getTicketsApi(store: any, fromDate: any, toDate: any, revopsType: any, status: any, action: any, offset: any, limit: any): Observable<any>;
|
|
68
|
-
getTicketsNewApi(ticketId: any): Observable<any>;
|
|
69
|
-
getTaggedStoresApi(client: any, fromDate: any, toDate: any, searchValue: any, clusters: any, sortOrder: any): Observable<any>;
|
|
70
|
-
getUpdateStatusApi(data: any): Observable<any>;
|
|
71
|
-
getUpdateTempStatusApi(data: any): Observable<any>;
|
|
72
|
-
getOpenTicketListApi(data: any): Observable<any>;
|
|
73
|
-
getUpdateTicketStatusApi(data: any): Observable<any>;
|
|
74
|
-
getCreateTicketListApi(data: any): Observable<any>;
|
|
75
|
-
CreateinternalTicketApi(data: any): Observable<any>;
|
|
76
|
-
getclusters(data: any): Observable<Object>;
|
|
77
|
-
getReviewerApi(clientId: any, type: any, tangotype: any): Observable<any>;
|
|
78
|
-
getTicketAssignApi(data: any): Observable<any>;
|
|
79
|
-
reAssignAudit(data: any): Observable<any>;
|
|
80
|
-
getMultiCloseTicketApi(data: any): Observable<any>;
|
|
81
|
-
getTypeFunction(clientId: any): Observable<any>;
|
|
82
|
-
private footfallData;
|
|
83
|
-
setFootfallData(data: any): void;
|
|
84
|
-
getFootfallData(): any;
|
|
85
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TicketService, never>;
|
|
86
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<TicketService>;
|
|
87
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -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,38 +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 "./components/footfall-dicview/footfall-dicview.component";
|
|
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 "./components/audit-report-popup/audit-report-popup.component";
|
|
22
|
-
import * as i21 from "./components/audit-retag/audit-retag.component";
|
|
23
|
-
import * as i22 from "./components/ticketclosepopup/ticketclosepopup.component";
|
|
24
|
-
import * as i23 from "./components/custom-select/custom-select.component";
|
|
25
|
-
import * as i24 from "./components/ticket-filter-panel/ticket-filter-panel.component";
|
|
26
|
-
import * as i25 from "@angular/common";
|
|
27
|
-
import * as i26 from "./tango-manage-tickets-routing.module";
|
|
28
|
-
import * as i27 from "@angular/forms";
|
|
29
|
-
import * as i28 from "tango-app-ui-shared";
|
|
30
|
-
import * as i29 from "ngx-daterangepicker-material";
|
|
31
|
-
import * as i30 from "@ng-bootstrap/ng-bootstrap";
|
|
32
|
-
import * as i31 from "ngx-spinner";
|
|
33
|
-
import * as i32 from "@angular/material/tooltip";
|
|
34
|
-
export declare class TangoManageTicketsModule {
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TangoManageTicketsModule, never>;
|
|
36
|
-
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.AuditReportPopupComponent, typeof i21.AuditRetagComponent, typeof i22.TicketclosepopupComponent, typeof i23.CustomSelectComponent, typeof i24.TicketFilterPanelComponent], [typeof i25.CommonModule, typeof i26.TangoManageTicketsRoutingModule, typeof i27.FormsModule, typeof i27.ReactiveFormsModule, typeof i28.CommonSharedModule, typeof i29.NgxDaterangepickerMd, typeof i30.NgbAccordionModule, typeof i31.NgxSpinnerModule, typeof i32.MatTooltipModule], never>;
|
|
37
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TangoManageTicketsModule>;
|
|
38
|
-
}
|