tango-app-ui-manage-tickets 3.7.0-beta.61 → 3.7.0-beta.62

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.
Files changed (177) hide show
  1. package/esm2022/lib/components/add-csm-modal/add-csm-modal.component.mjs +98 -0
  2. package/esm2022/lib/components/audit-log/audit-log.component.mjs +11 -0
  3. package/esm2022/lib/components/audit-mapping-list/audit-mapping-list.component.mjs +486 -0
  4. package/esm2022/lib/components/audit-metrics/audit-metrics.component.mjs +298 -0
  5. package/esm2022/lib/components/audit-report-popup/audit-report-popup.component.mjs +389 -0
  6. package/esm2022/lib/components/audit-retag/audit-retag.component.mjs +472 -0
  7. package/esm2022/lib/components/comment-model/comment-model.component.mjs +58 -0
  8. package/esm2022/lib/components/count/count.component.mjs +89 -0
  9. package/esm2022/lib/components/custom-select/custom-select.component.mjs +187 -0
  10. package/esm2022/lib/components/filter-options/filter-options.component.mjs +41 -0
  11. package/esm2022/lib/components/footfall-dic/footfall-dic.component.mjs +1061 -0
  12. package/esm2022/lib/components/footfall-dicview/footfall-dicview.component.mjs +1014 -0
  13. package/esm2022/lib/components/footfall-popup/footfall-popup.component.mjs +15 -0
  14. package/esm2022/lib/components/group-select/group-select.component.mjs +155 -0
  15. package/esm2022/lib/components/re-trigger/re-trigger.component.mjs +96 -0
  16. package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +108 -0
  17. package/esm2022/lib/components/remove-audit/remove-audit.component.mjs +81 -0
  18. package/esm2022/lib/components/start-audit/start-audit.component.mjs +761 -0
  19. package/esm2022/lib/components/tango-manage-tickets/tango-manage-tickets.component.mjs +131 -0
  20. package/esm2022/lib/components/ticket-filter-panel/ticket-filter-panel.component.mjs +435 -0
  21. package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +2748 -0
  22. package/esm2022/lib/components/ticketclosepopup/ticketclosepopup.component.mjs +43 -0
  23. package/esm2022/lib/components/tickets/tickets.component.mjs +847 -0
  24. package/esm2022/lib/components/viewcategory/viewcategory.component.mjs +89 -0
  25. package/esm2022/lib/services/audit.service.mjs +88 -0
  26. package/esm2022/lib/services/excel.service.mjs +45 -0
  27. package/esm2022/lib/services/ticket.service.mjs +319 -0
  28. package/esm2022/lib/services/timer.service.mjs +84 -0
  29. package/esm2022/lib/tango-manage-tickets-routing.module.mjs +44 -0
  30. package/esm2022/lib/tango-manage-tickets.module.mjs +109 -0
  31. package/esm2022/public-api.mjs +6 -0
  32. package/esm2022/tango-app-ui-manage-tickets.mjs +5 -0
  33. package/fesm2022/tango-app-ui-manage-tickets.mjs +10165 -0
  34. package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -0
  35. package/index.d.ts +5 -0
  36. package/lib/components/add-csm-modal/add-csm-modal.component.d.ts +30 -0
  37. package/lib/components/audit-log/audit-log.component.d.ts +5 -0
  38. package/lib/components/audit-mapping-list/audit-mapping-list.component.d.ts +73 -0
  39. package/lib/components/audit-metrics/audit-metrics.component.d.ts +59 -0
  40. package/lib/components/audit-report-popup/audit-report-popup.component.d.ts +52 -0
  41. package/lib/components/audit-retag/audit-retag.component.d.ts +59 -0
  42. package/lib/components/comment-model/comment-model.component.d.ts +17 -0
  43. package/lib/components/count/count.component.d.ts +23 -0
  44. package/lib/components/custom-select/custom-select.component.d.ts +35 -0
  45. package/lib/components/filter-options/filter-options.component.d.ts +15 -0
  46. package/lib/components/footfall-dic/footfall-dic.component.d.ts +143 -0
  47. package/lib/components/footfall-dicview/footfall-dicview.component.d.ts +132 -0
  48. package/lib/components/footfall-popup/footfall-popup.component.d.ts +8 -0
  49. package/lib/components/group-select/group-select.component.d.ts +33 -0
  50. package/lib/components/re-trigger/re-trigger.component.d.ts +32 -0
  51. package/lib/components/reactive-select/reactive-select.component.d.ts +32 -0
  52. package/lib/components/remove-audit/remove-audit.component.d.ts +16 -0
  53. package/lib/components/start-audit/start-audit.component.d.ts +86 -0
  54. package/lib/components/tango-manage-tickets/tango-manage-tickets.component.d.ts +28 -0
  55. package/lib/components/ticket-filter-panel/ticket-filter-panel.component.d.ts +79 -0
  56. package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +287 -0
  57. package/lib/components/ticketclosepopup/ticketclosepopup.component.d.ts +15 -0
  58. package/lib/components/tickets/tickets.component.d.ts +88 -0
  59. package/lib/components/viewcategory/viewcategory.component.d.ts +16 -0
  60. package/lib/services/audit.service.d.ts +36 -0
  61. package/lib/services/excel.service.d.ts +10 -0
  62. package/lib/services/ticket.service.d.ts +87 -0
  63. package/lib/services/timer.service.d.ts +22 -0
  64. package/lib/tango-manage-tickets-routing.module.d.ts +7 -0
  65. package/lib/tango-manage-tickets.module.d.ts +38 -0
  66. package/package.json +25 -12
  67. package/{src/public-api.ts → public-api.d.ts} +2 -8
  68. package/.eslintrc.json +0 -37
  69. package/ng-package.json +0 -7
  70. package/src/lib/components/add-csm-modal/add-csm-modal.component.html +0 -32
  71. package/src/lib/components/add-csm-modal/add-csm-modal.component.scss +0 -14
  72. package/src/lib/components/add-csm-modal/add-csm-modal.component.spec.ts +0 -23
  73. package/src/lib/components/add-csm-modal/add-csm-modal.component.ts +0 -94
  74. package/src/lib/components/audit-log/audit-log.component.html +0 -1
  75. package/src/lib/components/audit-log/audit-log.component.scss +0 -0
  76. package/src/lib/components/audit-log/audit-log.component.spec.ts +0 -23
  77. package/src/lib/components/audit-log/audit-log.component.ts +0 -10
  78. package/src/lib/components/audit-mapping-list/audit-mapping-list.component.html +0 -234
  79. package/src/lib/components/audit-mapping-list/audit-mapping-list.component.scss +0 -186
  80. package/src/lib/components/audit-mapping-list/audit-mapping-list.component.spec.ts +0 -23
  81. package/src/lib/components/audit-mapping-list/audit-mapping-list.component.ts +0 -520
  82. package/src/lib/components/audit-metrics/audit-metrics.component.html +0 -345
  83. package/src/lib/components/audit-metrics/audit-metrics.component.scss +0 -34
  84. package/src/lib/components/audit-metrics/audit-metrics.component.spec.ts +0 -23
  85. package/src/lib/components/audit-metrics/audit-metrics.component.ts +0 -292
  86. package/src/lib/components/audit-report-popup/audit-report-popup.component.html +0 -111
  87. package/src/lib/components/audit-report-popup/audit-report-popup.component.scss +0 -101
  88. package/src/lib/components/audit-report-popup/audit-report-popup.component.spec.ts +0 -23
  89. package/src/lib/components/audit-report-popup/audit-report-popup.component.ts +0 -397
  90. package/src/lib/components/audit-retag/audit-retag.component.html +0 -129
  91. package/src/lib/components/audit-retag/audit-retag.component.scss +0 -146
  92. package/src/lib/components/audit-retag/audit-retag.component.spec.ts +0 -23
  93. package/src/lib/components/audit-retag/audit-retag.component.ts +0 -489
  94. package/src/lib/components/comment-model/comment-model.component.html +0 -24
  95. package/src/lib/components/comment-model/comment-model.component.scss +0 -20
  96. package/src/lib/components/comment-model/comment-model.component.spec.ts +0 -23
  97. package/src/lib/components/comment-model/comment-model.component.ts +0 -53
  98. package/src/lib/components/count/count.component.html +0 -54
  99. package/src/lib/components/count/count.component.scss +0 -14
  100. package/src/lib/components/count/count.component.spec.ts +0 -23
  101. package/src/lib/components/count/count.component.ts +0 -82
  102. package/src/lib/components/custom-select/custom-select.component.html +0 -134
  103. package/src/lib/components/custom-select/custom-select.component.scss +0 -204
  104. package/src/lib/components/custom-select/custom-select.component.spec.ts +0 -23
  105. package/src/lib/components/custom-select/custom-select.component.ts +0 -189
  106. package/src/lib/components/filter-options/filter-options.component.html +0 -51
  107. package/src/lib/components/filter-options/filter-options.component.scss +0 -102
  108. package/src/lib/components/filter-options/filter-options.component.spec.ts +0 -23
  109. package/src/lib/components/filter-options/filter-options.component.ts +0 -38
  110. package/src/lib/components/footfall-dic/footfall-dic.component.html +0 -1275
  111. package/src/lib/components/footfall-dic/footfall-dic.component.scss +0 -273
  112. package/src/lib/components/footfall-dic/footfall-dic.component.spec.ts +0 -23
  113. package/src/lib/components/footfall-dic/footfall-dic.component.ts +0 -1206
  114. package/src/lib/components/footfall-dicview/footfall-dicview.component.html +0 -1136
  115. package/src/lib/components/footfall-dicview/footfall-dicview.component.scss +0 -416
  116. package/src/lib/components/footfall-dicview/footfall-dicview.component.spec.ts +0 -23
  117. package/src/lib/components/footfall-dicview/footfall-dicview.component.ts +0 -1168
  118. package/src/lib/components/footfall-popup/footfall-popup.component.html +0 -61
  119. package/src/lib/components/footfall-popup/footfall-popup.component.scss +0 -20
  120. package/src/lib/components/footfall-popup/footfall-popup.component.spec.ts +0 -23
  121. package/src/lib/components/footfall-popup/footfall-popup.component.ts +0 -12
  122. package/src/lib/components/group-select/group-select.component.html +0 -44
  123. package/src/lib/components/group-select/group-select.component.scss +0 -144
  124. package/src/lib/components/group-select/group-select.component.spec.ts +0 -23
  125. package/src/lib/components/group-select/group-select.component.ts +0 -145
  126. package/src/lib/components/re-trigger/re-trigger.component.html +0 -53
  127. package/src/lib/components/re-trigger/re-trigger.component.scss +0 -16
  128. package/src/lib/components/re-trigger/re-trigger.component.spec.ts +0 -23
  129. package/src/lib/components/re-trigger/re-trigger.component.ts +0 -96
  130. package/src/lib/components/reactive-select/reactive-select.component.html +0 -18
  131. package/src/lib/components/reactive-select/reactive-select.component.scss +0 -52
  132. package/src/lib/components/reactive-select/reactive-select.component.spec.ts +0 -23
  133. package/src/lib/components/reactive-select/reactive-select.component.ts +0 -104
  134. package/src/lib/components/remove-audit/remove-audit.component.html +0 -38
  135. package/src/lib/components/remove-audit/remove-audit.component.scss +0 -27
  136. package/src/lib/components/remove-audit/remove-audit.component.spec.ts +0 -23
  137. package/src/lib/components/remove-audit/remove-audit.component.ts +0 -81
  138. package/src/lib/components/start-audit/start-audit.component.html +0 -174
  139. package/src/lib/components/start-audit/start-audit.component.scss +0 -185
  140. package/src/lib/components/start-audit/start-audit.component.spec.ts +0 -23
  141. package/src/lib/components/start-audit/start-audit.component.ts +0 -761
  142. package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.html +0 -43
  143. package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.scss +0 -35
  144. package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.spec.ts +0 -23
  145. package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.ts +0 -118
  146. package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.html +0 -386
  147. package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.scss +0 -87
  148. package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.spec.ts +0 -23
  149. package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.ts +0 -494
  150. package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.html +0 -4743
  151. package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.scss +0 -1208
  152. package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.spec.ts +0 -23
  153. package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.ts +0 -3344
  154. package/src/lib/components/ticketclosepopup/ticketclosepopup.component.html +0 -100
  155. package/src/lib/components/ticketclosepopup/ticketclosepopup.component.scss +0 -34
  156. package/src/lib/components/ticketclosepopup/ticketclosepopup.component.spec.ts +0 -23
  157. package/src/lib/components/ticketclosepopup/ticketclosepopup.component.ts +0 -48
  158. package/src/lib/components/tickets/tickets.component.html +0 -451
  159. package/src/lib/components/tickets/tickets.component.scss +0 -131
  160. package/src/lib/components/tickets/tickets.component.spec.ts +0 -23
  161. package/src/lib/components/tickets/tickets.component.ts +0 -809
  162. package/src/lib/components/viewcategory/viewcategory.component.html +0 -38
  163. package/src/lib/components/viewcategory/viewcategory.component.scss +0 -29
  164. package/src/lib/components/viewcategory/viewcategory.component.spec.ts +0 -23
  165. package/src/lib/components/viewcategory/viewcategory.component.ts +0 -79
  166. package/src/lib/services/audit.service.spec.ts +0 -16
  167. package/src/lib/services/audit.service.ts +0 -98
  168. package/src/lib/services/excel.service.ts +0 -48
  169. package/src/lib/services/ticket.service.spec.ts +0 -16
  170. package/src/lib/services/ticket.service.ts +0 -501
  171. package/src/lib/services/timer.service.spec.ts +0 -16
  172. package/src/lib/services/timer.service.ts +0 -92
  173. package/src/lib/tango-manage-tickets-routing.module.ts +0 -37
  174. package/src/lib/tango-manage-tickets.module.ts +0 -68
  175. package/tsconfig.lib.json +0 -14
  176. package/tsconfig.lib.prod.json +0 -10
  177. package/tsconfig.spec.json +0 -14
package/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="tango-app-ui-manage-tickets" />
5
+ export * from './public-api';
@@ -0,0 +1,30 @@
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
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class AuditLogComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuditLogComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<AuditLogComponent, "lib-audit-log", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,73 @@
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
+ }
@@ -0,0 +1,59 @@
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
+ }
@@ -0,0 +1,52 @@
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
+ }
@@ -0,0 +1,59 @@
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
+ }
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,23 @@
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
+ }
@@ -0,0 +1,35 @@
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
+ }
@@ -0,0 +1,15 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FilterOptionsComponent {
4
+ applyFilters: EventEmitter<any>;
5
+ closePanel: EventEmitter<void>;
6
+ status: string;
7
+ condition: string;
8
+ ticketValue: number | null;
9
+ reviewer: string;
10
+ apply(): void;
11
+ close(): void;
12
+ reset(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterOptionsComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterOptionsComponent, "lib-filter-options", never, {}, { "applyFilters": "applyFilters"; "closePanel": "closePanel"; }, never, never, false, never>;
15
+ }
@@ -0,0 +1,143 @@
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
+ }
@@ -0,0 +1,132 @@
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
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FootfallPopupComponent {
3
+ comment: any;
4
+ cancel(): void;
5
+ commentSubmit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FootfallPopupComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<FootfallPopupComponent, "lib-footfall-popup", never, {}, {}, never, never, false, never>;
8
+ }