tango-app-ui-manage-tickets 3.7.0-beta.60 → 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.
- package/esm2022/lib/components/add-csm-modal/add-csm-modal.component.mjs +98 -0
- package/esm2022/lib/components/audit-log/audit-log.component.mjs +11 -0
- package/esm2022/lib/components/audit-mapping-list/audit-mapping-list.component.mjs +486 -0
- package/esm2022/lib/components/audit-metrics/audit-metrics.component.mjs +298 -0
- package/esm2022/lib/components/audit-report-popup/audit-report-popup.component.mjs +389 -0
- package/esm2022/lib/components/audit-retag/audit-retag.component.mjs +472 -0
- package/esm2022/lib/components/comment-model/comment-model.component.mjs +58 -0
- package/esm2022/lib/components/count/count.component.mjs +89 -0
- package/esm2022/lib/components/custom-select/custom-select.component.mjs +187 -0
- package/esm2022/lib/components/filter-options/filter-options.component.mjs +41 -0
- package/esm2022/lib/components/footfall-dic/footfall-dic.component.mjs +1061 -0
- package/esm2022/lib/components/footfall-dicview/footfall-dicview.component.mjs +1014 -0
- package/esm2022/lib/components/footfall-popup/footfall-popup.component.mjs +15 -0
- package/esm2022/lib/components/group-select/group-select.component.mjs +155 -0
- package/esm2022/lib/components/re-trigger/re-trigger.component.mjs +96 -0
- package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +108 -0
- package/esm2022/lib/components/remove-audit/remove-audit.component.mjs +81 -0
- package/esm2022/lib/components/start-audit/start-audit.component.mjs +761 -0
- package/esm2022/lib/components/tango-manage-tickets/tango-manage-tickets.component.mjs +131 -0
- package/esm2022/lib/components/ticket-filter-panel/ticket-filter-panel.component.mjs +435 -0
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +2748 -0
- package/esm2022/lib/components/ticketclosepopup/ticketclosepopup.component.mjs +43 -0
- package/esm2022/lib/components/tickets/tickets.component.mjs +847 -0
- package/esm2022/lib/components/viewcategory/viewcategory.component.mjs +89 -0
- package/esm2022/lib/services/audit.service.mjs +88 -0
- package/esm2022/lib/services/excel.service.mjs +45 -0
- package/esm2022/lib/services/ticket.service.mjs +319 -0
- package/esm2022/lib/services/timer.service.mjs +84 -0
- package/esm2022/lib/tango-manage-tickets-routing.module.mjs +44 -0
- package/esm2022/lib/tango-manage-tickets.module.mjs +109 -0
- package/esm2022/public-api.mjs +6 -0
- package/esm2022/tango-app-ui-manage-tickets.mjs +5 -0
- package/fesm2022/tango-app-ui-manage-tickets.mjs +10165 -0
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/add-csm-modal/add-csm-modal.component.d.ts +30 -0
- package/lib/components/audit-log/audit-log.component.d.ts +5 -0
- package/lib/components/audit-mapping-list/audit-mapping-list.component.d.ts +73 -0
- package/lib/components/audit-metrics/audit-metrics.component.d.ts +59 -0
- package/lib/components/audit-report-popup/audit-report-popup.component.d.ts +52 -0
- package/lib/components/audit-retag/audit-retag.component.d.ts +59 -0
- package/lib/components/comment-model/comment-model.component.d.ts +17 -0
- package/lib/components/count/count.component.d.ts +23 -0
- package/lib/components/custom-select/custom-select.component.d.ts +35 -0
- package/lib/components/filter-options/filter-options.component.d.ts +15 -0
- package/lib/components/footfall-dic/footfall-dic.component.d.ts +143 -0
- package/lib/components/footfall-dicview/footfall-dicview.component.d.ts +132 -0
- package/lib/components/footfall-popup/footfall-popup.component.d.ts +8 -0
- package/lib/components/group-select/group-select.component.d.ts +33 -0
- package/lib/components/re-trigger/re-trigger.component.d.ts +32 -0
- package/lib/components/reactive-select/reactive-select.component.d.ts +32 -0
- package/lib/components/remove-audit/remove-audit.component.d.ts +16 -0
- package/lib/components/start-audit/start-audit.component.d.ts +86 -0
- package/lib/components/tango-manage-tickets/tango-manage-tickets.component.d.ts +28 -0
- package/lib/components/ticket-filter-panel/ticket-filter-panel.component.d.ts +79 -0
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +287 -0
- package/lib/components/ticketclosepopup/ticketclosepopup.component.d.ts +15 -0
- package/lib/components/tickets/tickets.component.d.ts +88 -0
- package/lib/components/viewcategory/viewcategory.component.d.ts +16 -0
- package/lib/services/audit.service.d.ts +36 -0
- package/lib/services/excel.service.d.ts +10 -0
- package/lib/services/ticket.service.d.ts +87 -0
- package/lib/services/timer.service.d.ts +22 -0
- package/lib/tango-manage-tickets-routing.module.d.ts +7 -0
- package/lib/tango-manage-tickets.module.d.ts +38 -0
- package/package.json +25 -12
- package/{src/public-api.ts → public-api.d.ts} +2 -8
- package/.eslintrc.json +0 -37
- package/ng-package.json +0 -7
- package/src/lib/components/add-csm-modal/add-csm-modal.component.html +0 -32
- package/src/lib/components/add-csm-modal/add-csm-modal.component.scss +0 -14
- package/src/lib/components/add-csm-modal/add-csm-modal.component.spec.ts +0 -23
- package/src/lib/components/add-csm-modal/add-csm-modal.component.ts +0 -94
- package/src/lib/components/audit-log/audit-log.component.html +0 -1
- package/src/lib/components/audit-log/audit-log.component.scss +0 -0
- package/src/lib/components/audit-log/audit-log.component.spec.ts +0 -23
- package/src/lib/components/audit-log/audit-log.component.ts +0 -10
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.html +0 -234
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.scss +0 -186
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.spec.ts +0 -23
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.ts +0 -520
- package/src/lib/components/audit-metrics/audit-metrics.component.html +0 -345
- package/src/lib/components/audit-metrics/audit-metrics.component.scss +0 -34
- package/src/lib/components/audit-metrics/audit-metrics.component.spec.ts +0 -23
- package/src/lib/components/audit-metrics/audit-metrics.component.ts +0 -292
- package/src/lib/components/audit-report-popup/audit-report-popup.component.html +0 -111
- package/src/lib/components/audit-report-popup/audit-report-popup.component.scss +0 -101
- package/src/lib/components/audit-report-popup/audit-report-popup.component.spec.ts +0 -23
- package/src/lib/components/audit-report-popup/audit-report-popup.component.ts +0 -397
- package/src/lib/components/audit-retag/audit-retag.component.html +0 -129
- package/src/lib/components/audit-retag/audit-retag.component.scss +0 -146
- package/src/lib/components/audit-retag/audit-retag.component.spec.ts +0 -23
- package/src/lib/components/audit-retag/audit-retag.component.ts +0 -489
- package/src/lib/components/comment-model/comment-model.component.html +0 -24
- package/src/lib/components/comment-model/comment-model.component.scss +0 -20
- package/src/lib/components/comment-model/comment-model.component.spec.ts +0 -23
- package/src/lib/components/comment-model/comment-model.component.ts +0 -53
- package/src/lib/components/count/count.component.html +0 -54
- package/src/lib/components/count/count.component.scss +0 -14
- package/src/lib/components/count/count.component.spec.ts +0 -23
- package/src/lib/components/count/count.component.ts +0 -82
- package/src/lib/components/custom-select/custom-select.component.html +0 -134
- package/src/lib/components/custom-select/custom-select.component.scss +0 -204
- package/src/lib/components/custom-select/custom-select.component.spec.ts +0 -23
- package/src/lib/components/custom-select/custom-select.component.ts +0 -189
- package/src/lib/components/filter-options/filter-options.component.html +0 -51
- package/src/lib/components/filter-options/filter-options.component.scss +0 -102
- package/src/lib/components/filter-options/filter-options.component.spec.ts +0 -23
- package/src/lib/components/filter-options/filter-options.component.ts +0 -38
- package/src/lib/components/footfall-dic/footfall-dic.component.html +0 -1275
- package/src/lib/components/footfall-dic/footfall-dic.component.scss +0 -273
- package/src/lib/components/footfall-dic/footfall-dic.component.spec.ts +0 -23
- package/src/lib/components/footfall-dic/footfall-dic.component.ts +0 -1206
- package/src/lib/components/footfall-dicview/footfall-dicview.component.html +0 -1136
- package/src/lib/components/footfall-dicview/footfall-dicview.component.scss +0 -416
- package/src/lib/components/footfall-dicview/footfall-dicview.component.spec.ts +0 -23
- package/src/lib/components/footfall-dicview/footfall-dicview.component.ts +0 -1168
- package/src/lib/components/footfall-popup/footfall-popup.component.html +0 -61
- package/src/lib/components/footfall-popup/footfall-popup.component.scss +0 -20
- package/src/lib/components/footfall-popup/footfall-popup.component.spec.ts +0 -23
- package/src/lib/components/footfall-popup/footfall-popup.component.ts +0 -12
- package/src/lib/components/group-select/group-select.component.html +0 -44
- package/src/lib/components/group-select/group-select.component.scss +0 -144
- package/src/lib/components/group-select/group-select.component.spec.ts +0 -23
- package/src/lib/components/group-select/group-select.component.ts +0 -145
- package/src/lib/components/re-trigger/re-trigger.component.html +0 -53
- package/src/lib/components/re-trigger/re-trigger.component.scss +0 -16
- package/src/lib/components/re-trigger/re-trigger.component.spec.ts +0 -23
- package/src/lib/components/re-trigger/re-trigger.component.ts +0 -96
- package/src/lib/components/reactive-select/reactive-select.component.html +0 -18
- package/src/lib/components/reactive-select/reactive-select.component.scss +0 -52
- package/src/lib/components/reactive-select/reactive-select.component.spec.ts +0 -23
- package/src/lib/components/reactive-select/reactive-select.component.ts +0 -104
- package/src/lib/components/remove-audit/remove-audit.component.html +0 -38
- package/src/lib/components/remove-audit/remove-audit.component.scss +0 -27
- package/src/lib/components/remove-audit/remove-audit.component.spec.ts +0 -23
- package/src/lib/components/remove-audit/remove-audit.component.ts +0 -81
- package/src/lib/components/start-audit/start-audit.component.html +0 -174
- package/src/lib/components/start-audit/start-audit.component.scss +0 -185
- package/src/lib/components/start-audit/start-audit.component.spec.ts +0 -23
- package/src/lib/components/start-audit/start-audit.component.ts +0 -761
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.html +0 -43
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.scss +0 -35
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.spec.ts +0 -23
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.ts +0 -118
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.html +0 -386
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.scss +0 -87
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.spec.ts +0 -23
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.ts +0 -494
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.html +0 -4743
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.scss +0 -1208
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.spec.ts +0 -23
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.ts +0 -3351
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.html +0 -100
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.scss +0 -34
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.spec.ts +0 -23
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.ts +0 -48
- package/src/lib/components/tickets/tickets.component.html +0 -451
- package/src/lib/components/tickets/tickets.component.scss +0 -131
- package/src/lib/components/tickets/tickets.component.spec.ts +0 -23
- package/src/lib/components/tickets/tickets.component.ts +0 -809
- package/src/lib/components/viewcategory/viewcategory.component.html +0 -38
- package/src/lib/components/viewcategory/viewcategory.component.scss +0 -29
- package/src/lib/components/viewcategory/viewcategory.component.spec.ts +0 -23
- package/src/lib/components/viewcategory/viewcategory.component.ts +0 -79
- package/src/lib/services/audit.service.spec.ts +0 -16
- package/src/lib/services/audit.service.ts +0 -98
- package/src/lib/services/excel.service.ts +0 -48
- package/src/lib/services/ticket.service.spec.ts +0 -16
- package/src/lib/services/ticket.service.ts +0 -501
- package/src/lib/services/timer.service.spec.ts +0 -16
- package/src/lib/services/timer.service.ts +0 -92
- package/src/lib/tango-manage-tickets-routing.module.ts +0 -37
- package/src/lib/tango-manage-tickets.module.ts +0 -68
- package/tsconfig.lib.json +0 -14
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -14
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NgbModal, NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RemoveAuditComponent implements OnInit {
|
|
5
|
+
private modalService;
|
|
6
|
+
activeModal: NgbActiveModal;
|
|
7
|
+
imagelist: any;
|
|
8
|
+
maindata: any;
|
|
9
|
+
data: any;
|
|
10
|
+
constructor(modalService: NgbModal, activeModal: NgbActiveModal);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
removeimage(data: any): void;
|
|
13
|
+
closepopup(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RemoveAuditComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RemoveAuditComponent, "lib-remove-audit", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
4
|
+
import { Subject, Subscription } from 'rxjs';
|
|
5
|
+
import { AuditService } from '../../services/audit.service';
|
|
6
|
+
import { ToastService } from 'tango-app-ui-shared';
|
|
7
|
+
import { NgxSpinnerService } from 'ngx-spinner';
|
|
8
|
+
import { ExcelService } from '../../services/excel.service';
|
|
9
|
+
import { TimerService } from '../../services/timer.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class StartAuditComponent implements OnInit, OnDestroy {
|
|
12
|
+
private excel;
|
|
13
|
+
private auditservice;
|
|
14
|
+
private toastr;
|
|
15
|
+
private router;
|
|
16
|
+
private cd;
|
|
17
|
+
private modalService;
|
|
18
|
+
private timerService;
|
|
19
|
+
private spinnerService;
|
|
20
|
+
private route;
|
|
21
|
+
junkimage: any;
|
|
22
|
+
employeimage: any;
|
|
23
|
+
filedetails: any;
|
|
24
|
+
datareason: any;
|
|
25
|
+
limit: any;
|
|
26
|
+
nextId: any;
|
|
27
|
+
spinnerstart: boolean;
|
|
28
|
+
submitted: boolean;
|
|
29
|
+
auditId: any;
|
|
30
|
+
customercount: number;
|
|
31
|
+
junkcount: number;
|
|
32
|
+
employeecount: number;
|
|
33
|
+
demographic: any;
|
|
34
|
+
id: any;
|
|
35
|
+
queueName: any;
|
|
36
|
+
auditmappingdata: any;
|
|
37
|
+
totalfile: any;
|
|
38
|
+
auditLoading: boolean;
|
|
39
|
+
badge: boolean;
|
|
40
|
+
imagelist: any;
|
|
41
|
+
selected: any;
|
|
42
|
+
selectedType: any;
|
|
43
|
+
auditLoading1: boolean;
|
|
44
|
+
Nodata: boolean;
|
|
45
|
+
counter: any;
|
|
46
|
+
clickedImages: boolean[];
|
|
47
|
+
confirmDraft: any;
|
|
48
|
+
confirmerror: any;
|
|
49
|
+
Errormsg: any;
|
|
50
|
+
storedetails: any;
|
|
51
|
+
openmodel: boolean;
|
|
52
|
+
private readonly destroy$;
|
|
53
|
+
getBack: boolean;
|
|
54
|
+
category: any;
|
|
55
|
+
onScroll(): void;
|
|
56
|
+
handleKeyPress(event: KeyboardEvent): void;
|
|
57
|
+
constructor(excel: ExcelService, auditservice: AuditService, toastr: ToastService, router: Router, cd: ChangeDetectorRef, modalService: NgbModal, timerService: TimerService, spinnerService: NgxSpinnerService, route: ActivatedRoute);
|
|
58
|
+
destroy: Subject<unknown>;
|
|
59
|
+
showDialog: boolean;
|
|
60
|
+
timePassed: number;
|
|
61
|
+
subscription: Subscription | null;
|
|
62
|
+
formattedTime: string;
|
|
63
|
+
notice: string;
|
|
64
|
+
showNotice: boolean;
|
|
65
|
+
rxjsTimer: Subscription[];
|
|
66
|
+
ngOnInit(): void;
|
|
67
|
+
setTimer(): void;
|
|
68
|
+
handleGlobalMouseEvent: () => void;
|
|
69
|
+
ngOnDestroy(): void;
|
|
70
|
+
initial_data_loading(): void;
|
|
71
|
+
toggleImage(img_name: any): void;
|
|
72
|
+
getAuditConfig(): void;
|
|
73
|
+
getMapping(nextId?: any): void;
|
|
74
|
+
removeaudit(data: any): void;
|
|
75
|
+
allowDrop(event: any): void;
|
|
76
|
+
dragImage(event: any): void;
|
|
77
|
+
dropImage(event: any): void;
|
|
78
|
+
dragStart(event: DragEvent): void;
|
|
79
|
+
Reviewdata(): void;
|
|
80
|
+
viewcategory(data: any): void;
|
|
81
|
+
savedraft(): Promise<void>;
|
|
82
|
+
backtotickets(): void;
|
|
83
|
+
cameraPreview(): void;
|
|
84
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StartAuditComponent, never>;
|
|
85
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StartAuditComponent, "lib-start-audit", never, {}, {}, never, never, false, never>;
|
|
86
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
clientData: any;
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
updateStoreIdQueryParam(): void;
|
|
21
|
+
setPageData(): void;
|
|
22
|
+
Selectedtabs(value: any): void;
|
|
23
|
+
ngOnDestroy(): void;
|
|
24
|
+
onLoad(): void;
|
|
25
|
+
getAllCount(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TangoManageTicketsComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TangoManageTicketsComponent, "lib-tango-manage-tickets", never, {}, {}, never, never, false, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { TicketService } from '../../services/ticket.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TicketFilterPanelComponent implements OnChanges {
|
|
6
|
+
private fb;
|
|
7
|
+
private eRef;
|
|
8
|
+
private service;
|
|
9
|
+
apply: EventEmitter<any>;
|
|
10
|
+
panelClosed: EventEmitter<void>;
|
|
11
|
+
permissionType: string | null;
|
|
12
|
+
userType: string | null;
|
|
13
|
+
client: any;
|
|
14
|
+
onDocumentClick(event: MouseEvent): void;
|
|
15
|
+
isOpen: boolean;
|
|
16
|
+
open(): void;
|
|
17
|
+
close(): void;
|
|
18
|
+
showPanel: boolean;
|
|
19
|
+
statusOptions: any[];
|
|
20
|
+
conditionOptions: {
|
|
21
|
+
value: string;
|
|
22
|
+
label: string;
|
|
23
|
+
}[];
|
|
24
|
+
filterForm: FormGroup;
|
|
25
|
+
constructor(fb: FormBuilder, eRef: ElementRef, service: TicketService);
|
|
26
|
+
limitValue(event: any, controlName: string): void;
|
|
27
|
+
get isTango(): boolean;
|
|
28
|
+
get showReviewerAccuracy(): boolean;
|
|
29
|
+
get showReviewedBy(): boolean;
|
|
30
|
+
get showApproverAccuracy(): boolean;
|
|
31
|
+
get showApprovedBy(): boolean;
|
|
32
|
+
get showTangoAccuracy(): boolean;
|
|
33
|
+
statusDropdownOpen: boolean;
|
|
34
|
+
isStatusSelected(status: string): boolean;
|
|
35
|
+
onStatusChange(event: Event, status: string): void;
|
|
36
|
+
toggleStatusDropdown(event?: MouseEvent): void;
|
|
37
|
+
areAllStatusesSelected(): boolean;
|
|
38
|
+
onStatusSelectAllChange(event: Event): void;
|
|
39
|
+
get selectedStatuses(): string[];
|
|
40
|
+
isBetween(controlName: string): boolean;
|
|
41
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
42
|
+
userList: any[];
|
|
43
|
+
reviewerSearchTerm: string;
|
|
44
|
+
get filteredReviewerList(): {
|
|
45
|
+
email: string;
|
|
46
|
+
name?: string;
|
|
47
|
+
}[];
|
|
48
|
+
approverSearchTerm: any;
|
|
49
|
+
get filteredApproverList(): any[];
|
|
50
|
+
onApproverSearch(value: string): void;
|
|
51
|
+
private loadReviewerList;
|
|
52
|
+
reviewerDropdownOpen: boolean;
|
|
53
|
+
approverDropdownOpen: boolean;
|
|
54
|
+
get selectedReviewedBy(): string[];
|
|
55
|
+
get selectedApprovedBy(): string[];
|
|
56
|
+
toggleReviewerDropdown(event?: MouseEvent): void;
|
|
57
|
+
isReviewerSelected(email: string): boolean;
|
|
58
|
+
onReviewerChange(event: Event, email: string): void;
|
|
59
|
+
areAllReviewersSelected(): boolean;
|
|
60
|
+
onReviewerSelectAll(event: Event): void;
|
|
61
|
+
toggleApproverDropdown(event?: MouseEvent): void;
|
|
62
|
+
isApproverSelected(email: string): boolean;
|
|
63
|
+
onApproverChange(event: Event, email: string): void;
|
|
64
|
+
areAllApproversSelected(): boolean;
|
|
65
|
+
onApproverSelectAll(event: Event): void;
|
|
66
|
+
onReset(): void;
|
|
67
|
+
private mapAccuracy;
|
|
68
|
+
onApply(): void;
|
|
69
|
+
dropdownState: {
|
|
70
|
+
status: boolean;
|
|
71
|
+
reviewer: boolean;
|
|
72
|
+
approver: boolean;
|
|
73
|
+
};
|
|
74
|
+
closeAll(): void;
|
|
75
|
+
toggleDropdown(type: 'status' | 'reviewer' | 'approver', event: MouseEvent): void;
|
|
76
|
+
isDropdownOpen(type: 'status' | 'reviewer' | 'approver'): boolean;
|
|
77
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketFilterPanelComponent, never>;
|
|
78
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketFilterPanelComponent, "lib-ticket-filter-panel", never, { "permissionType": { "alias": "permissionType"; "required": false; }; "userType": { "alias": "userType"; "required": false; }; "client": { "alias": "client"; "required": false; }; }, { "apply": "apply"; "panelClosed": "panelClosed"; }, never, never, false, never>;
|
|
79
|
+
}
|
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
import { OnDestroy, OnInit, ChangeDetectorRef, EventEmitter, ElementRef } from "@angular/core";
|
|
2
|
+
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
3
|
+
import { GlobalStateService } from "tango-app-ui-global";
|
|
4
|
+
import { TicketService } from "../../services/ticket.service";
|
|
5
|
+
import { ExcelService } from "../../services/excel.service";
|
|
6
|
+
import { ToastService } from "tango-app-ui-shared";
|
|
7
|
+
import { FormBuilder, FormGroup } from "@angular/forms";
|
|
8
|
+
import { Router } from "@angular/router";
|
|
9
|
+
import 'dayjs/locale/en';
|
|
10
|
+
import { MatTooltip } from '@angular/material/tooltip';
|
|
11
|
+
import dayjs from 'dayjs';
|
|
12
|
+
import { AuditService } from "../../services/audit.service";
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
15
|
+
private modalService;
|
|
16
|
+
gs: GlobalStateService;
|
|
17
|
+
private service;
|
|
18
|
+
private cd;
|
|
19
|
+
private excelService;
|
|
20
|
+
private ts;
|
|
21
|
+
private fb;
|
|
22
|
+
private router;
|
|
23
|
+
private auditservice;
|
|
24
|
+
searchValue: any;
|
|
25
|
+
sortedColumn: string;
|
|
26
|
+
sortDirection: number;
|
|
27
|
+
private readonly destroy$;
|
|
28
|
+
constructor(modalService: NgbModal, gs: GlobalStateService, service: TicketService, cd: ChangeDetectorRef, excelService: ExcelService, ts: ToastService, fb: FormBuilder, router: Router, auditservice: AuditService);
|
|
29
|
+
headerFilters: any;
|
|
30
|
+
footfallList_req: any;
|
|
31
|
+
usersDetails: any;
|
|
32
|
+
selectedStore: any;
|
|
33
|
+
selectedReviewer: any;
|
|
34
|
+
storeList: any;
|
|
35
|
+
dayjs: typeof dayjs;
|
|
36
|
+
selectedDateRange: any;
|
|
37
|
+
arrowshow: boolean;
|
|
38
|
+
accuracyList: any;
|
|
39
|
+
selectedIssue: any;
|
|
40
|
+
selectedsubIssue: any;
|
|
41
|
+
isCustomDate: (m: dayjs.Dayjs) => false | "invalid-date";
|
|
42
|
+
tooltip: MatTooltip;
|
|
43
|
+
footfallcount: any;
|
|
44
|
+
internalticket: any;
|
|
45
|
+
closeacuuracyissue: any;
|
|
46
|
+
clientData: any;
|
|
47
|
+
ngOnInit(): void;
|
|
48
|
+
viewTicket(type: any): void;
|
|
49
|
+
private areAllItemsReviewed;
|
|
50
|
+
private hasReviewDecision;
|
|
51
|
+
selectedRole: 'approver' | 'reviewer' | '';
|
|
52
|
+
statusVal: any;
|
|
53
|
+
dueDate: any;
|
|
54
|
+
getHeaderStatus(): any;
|
|
55
|
+
approverClosed: any;
|
|
56
|
+
getCurrentRoleMapping(): any;
|
|
57
|
+
disableToday: (date: any) => boolean;
|
|
58
|
+
datechange(event: any): void;
|
|
59
|
+
getStatusBadgeClass(status: string): string;
|
|
60
|
+
getFootfallSummaryData: any;
|
|
61
|
+
getTicketSummary(type: any): void;
|
|
62
|
+
offset: number;
|
|
63
|
+
limit: number;
|
|
64
|
+
isExport: any;
|
|
65
|
+
footfallListData: any;
|
|
66
|
+
totalItems: any;
|
|
67
|
+
paginationSizes: number[];
|
|
68
|
+
loading: boolean;
|
|
69
|
+
noData: boolean;
|
|
70
|
+
tangoType: any;
|
|
71
|
+
filterPayload: any;
|
|
72
|
+
permissionType: string | null;
|
|
73
|
+
setPermissionType(): void;
|
|
74
|
+
private buildFiltersForApi;
|
|
75
|
+
getTicketList(type: any): void;
|
|
76
|
+
tableColumns: any[];
|
|
77
|
+
labelOverrides: Record<string, string>;
|
|
78
|
+
hiddenColumns: string[];
|
|
79
|
+
sortableColumns: string[];
|
|
80
|
+
generateColumns(firstRow: any): void;
|
|
81
|
+
formatColumnName(key: string): string;
|
|
82
|
+
detectColumnType(key: string): "text" | "status" | "date" | "store";
|
|
83
|
+
currentPage: any;
|
|
84
|
+
pageSize: any;
|
|
85
|
+
onPageChange(pageOffset: number): void;
|
|
86
|
+
onPageSizeChange(pageSize: number): void;
|
|
87
|
+
setpageSize(): any;
|
|
88
|
+
searchData(): void;
|
|
89
|
+
storeChange(event: any): void;
|
|
90
|
+
onStartDateChange(event: any): void;
|
|
91
|
+
createInternalticket(): void;
|
|
92
|
+
exportXLSX(): void;
|
|
93
|
+
onSort(column: string): void;
|
|
94
|
+
select: string;
|
|
95
|
+
ticketData: any;
|
|
96
|
+
startAudit(): void;
|
|
97
|
+
backToNavigation(): void;
|
|
98
|
+
isCollapsed: boolean;
|
|
99
|
+
toggleSidebar(): void;
|
|
100
|
+
toggleFilter(): void;
|
|
101
|
+
isFilterOpen: boolean;
|
|
102
|
+
filterForm: FormGroup;
|
|
103
|
+
filterChange: EventEmitter<any>;
|
|
104
|
+
newForm(): void;
|
|
105
|
+
applyFilter(): void;
|
|
106
|
+
resetFilter(): void;
|
|
107
|
+
close(): void;
|
|
108
|
+
StoresSearchValue: any;
|
|
109
|
+
sortedColumn1: string;
|
|
110
|
+
sortDirection1: number;
|
|
111
|
+
openTicketsList: any[];
|
|
112
|
+
selectedStores: any[];
|
|
113
|
+
allSelected: boolean;
|
|
114
|
+
get storeCount(): number;
|
|
115
|
+
isSelected(store: any): boolean;
|
|
116
|
+
toggleStoreSelection(store: any): void;
|
|
117
|
+
newallSelected: boolean;
|
|
118
|
+
toggleSelectAll(): void;
|
|
119
|
+
ticketViewChanges(store: any): void;
|
|
120
|
+
originalImage: any;
|
|
121
|
+
ticket: any;
|
|
122
|
+
imageUrl: any;
|
|
123
|
+
getFormattedEntryTime(entryTime: any): string;
|
|
124
|
+
duplicates: any;
|
|
125
|
+
selectedDuplicatesByParent: {
|
|
126
|
+
[parentId: number]: number[];
|
|
127
|
+
};
|
|
128
|
+
isDuplicateSelected(parentId: number, duplicateId: number): boolean;
|
|
129
|
+
onDuplicateCheckboxChange(parentId: number, duplicateId: number, event: Event): void;
|
|
130
|
+
areAllDuplicatesSelected(original: any): boolean;
|
|
131
|
+
onToggleSelectAllDuplicates(original: any, event: Event): void;
|
|
132
|
+
commentModal(obj: any): void;
|
|
133
|
+
commentsAccordionOpen: boolean;
|
|
134
|
+
selectedCommentCategory: string | null;
|
|
135
|
+
getCategoryCommentCountForSource(source: any, category: string): number;
|
|
136
|
+
toggleCommentsAccordion(type: string): void;
|
|
137
|
+
ngOnDestroy(): void;
|
|
138
|
+
activityData: any;
|
|
139
|
+
activityData1: any;
|
|
140
|
+
comments: any;
|
|
141
|
+
showRevisedDetails: boolean;
|
|
142
|
+
footfallNoData: boolean;
|
|
143
|
+
footfallLoading: boolean;
|
|
144
|
+
footfalloffset: number;
|
|
145
|
+
footfalllimit: number;
|
|
146
|
+
totalItemsFootfall: any;
|
|
147
|
+
dataIndexId: string;
|
|
148
|
+
dateString: string;
|
|
149
|
+
storeIdValue: any;
|
|
150
|
+
lastSelectedTicket: any;
|
|
151
|
+
selecteValues: any;
|
|
152
|
+
hasInitialStoreSynced: boolean;
|
|
153
|
+
pageSizeFootfall: number;
|
|
154
|
+
paginationSizesFootfall: number[];
|
|
155
|
+
addStoreIfNotExists(store: any): void;
|
|
156
|
+
revopsTypes: string[];
|
|
157
|
+
buildRevopsTypes(tickets: any[]): void;
|
|
158
|
+
ticketStatus: any;
|
|
159
|
+
private updateCloseStateFromMapping;
|
|
160
|
+
private getActionCompletion;
|
|
161
|
+
hasRevopsType(type: any): boolean;
|
|
162
|
+
private isFinalStatus;
|
|
163
|
+
overallSelectedIds: any;
|
|
164
|
+
overallSelect(event: any): void;
|
|
165
|
+
getAllParentItems(): any[];
|
|
166
|
+
isCheckboxEnable: boolean;
|
|
167
|
+
closeBtn: boolean;
|
|
168
|
+
closeDisabled: boolean;
|
|
169
|
+
startReview(): void;
|
|
170
|
+
closePopup: ElementRef;
|
|
171
|
+
stopReview(): void;
|
|
172
|
+
ticketView(data?: any): void;
|
|
173
|
+
accuracyReasons(): void;
|
|
174
|
+
oncloseSubmit(): void;
|
|
175
|
+
dataStoreView(data?: any): void;
|
|
176
|
+
footfallTicketsData: any[];
|
|
177
|
+
selectedByType: any;
|
|
178
|
+
selectAllByType: any;
|
|
179
|
+
getListByType(type: any): any[];
|
|
180
|
+
private updateOverallSelectedIds;
|
|
181
|
+
selectedCategories: any;
|
|
182
|
+
labelMap: Record<string, string>;
|
|
183
|
+
toTitleCase(str: string): string;
|
|
184
|
+
buildLabelMap(tickets: any[]): void;
|
|
185
|
+
get selectedCategoriesLabel(): string;
|
|
186
|
+
type: any;
|
|
187
|
+
popupvalue: any;
|
|
188
|
+
onSelectAll(type: any, event: any): void;
|
|
189
|
+
onImageCheckboxChange(type: string, id: any, event: any): void;
|
|
190
|
+
remarks: any;
|
|
191
|
+
zoomPopup: ElementRef;
|
|
192
|
+
popupType: any;
|
|
193
|
+
popupIds: any[];
|
|
194
|
+
popupOpen(type: any, value?: any): void;
|
|
195
|
+
houseKeepingACCount: any;
|
|
196
|
+
employeeACCount: any;
|
|
197
|
+
duplicateACCount: any;
|
|
198
|
+
junkACCount: any;
|
|
199
|
+
selectedDuplicateImagesList: any[];
|
|
200
|
+
selectedHousekeepingImagesList: any[];
|
|
201
|
+
selectedEmployeeImagesList: any[];
|
|
202
|
+
selectedJunkImagesList: any[];
|
|
203
|
+
submitValue(status?: string, category?: string): void;
|
|
204
|
+
resetSelections(): void;
|
|
205
|
+
cancel(): void;
|
|
206
|
+
openArrow(): void;
|
|
207
|
+
sortOpen: 1 | -1;
|
|
208
|
+
onSortClick(): void;
|
|
209
|
+
searchStoresData(): void;
|
|
210
|
+
getOpenTicketList(data?: any): void;
|
|
211
|
+
isLockedByReviewer(original: any): boolean;
|
|
212
|
+
isApproved1(original: any): boolean;
|
|
213
|
+
isRejected1(original: any): boolean;
|
|
214
|
+
isApproved(original: any): boolean;
|
|
215
|
+
isRejected(original: any): boolean;
|
|
216
|
+
resetCheckbox(type: any, original: any): void;
|
|
217
|
+
viewMode: "tangoreview" | "approve" | "review" | "tagging";
|
|
218
|
+
getAction(original: any, type: "tagging" | "review" | "tangoreview" | "approve"): any;
|
|
219
|
+
getCurrentReviewMapping(): any;
|
|
220
|
+
isTicketFullyReviewed(mapping: any): boolean;
|
|
221
|
+
getInitialsFromEmail(email?: string): string;
|
|
222
|
+
confirmCloseTicket(): void;
|
|
223
|
+
confirmCloseCancel(): void;
|
|
224
|
+
imagePreviewPopup: ElementRef;
|
|
225
|
+
previewList: any[];
|
|
226
|
+
currentPreviewIndex: number;
|
|
227
|
+
previewTitle: string;
|
|
228
|
+
get currentPreviewItem(): any;
|
|
229
|
+
getPreviewImageUrl(): any;
|
|
230
|
+
overallMapping: any;
|
|
231
|
+
openImagePreview(list: any, target: any, startIndex: number, title: string): void;
|
|
232
|
+
private setPreviewIndex;
|
|
233
|
+
overallApproveClosed(): boolean;
|
|
234
|
+
getApproveActionForItem(item: any): any | null;
|
|
235
|
+
canShowPreviewActions(item: any): boolean;
|
|
236
|
+
prevPreview(): void;
|
|
237
|
+
nextPreview(): void;
|
|
238
|
+
popupValue: any;
|
|
239
|
+
rejectedPopup(type: any, value: any): void;
|
|
240
|
+
approvedPopup(type: any, value: any): void;
|
|
241
|
+
get hasApproverAccess(): boolean;
|
|
242
|
+
get hasReviewerAccess(): boolean;
|
|
243
|
+
setDefaultRole(): void;
|
|
244
|
+
SelectedRole(role: 'approver' | 'reviewer'): void;
|
|
245
|
+
showApproveDetails: boolean;
|
|
246
|
+
showTangoDetails: boolean;
|
|
247
|
+
toggleRevisedDetails(mapping: any): void;
|
|
248
|
+
reviwerList: any;
|
|
249
|
+
reviewrReassignApi(): void;
|
|
250
|
+
reviewrApi(): void;
|
|
251
|
+
reviewerChange(event: any): void;
|
|
252
|
+
assignTicketView(): void;
|
|
253
|
+
cancelassign(): void;
|
|
254
|
+
isTicketMenuOpen: boolean;
|
|
255
|
+
toggleTicketMenu(event: MouseEvent): void;
|
|
256
|
+
onDocumentClick(): void;
|
|
257
|
+
onReassignClick(): void;
|
|
258
|
+
ReassignTicketPopup: ElementRef;
|
|
259
|
+
openReassignPopup(): void;
|
|
260
|
+
onExportClick(): void;
|
|
261
|
+
getMultipleTicketClose(): void;
|
|
262
|
+
isRowSelectable(row: any): boolean;
|
|
263
|
+
selectedTicketRows: any;
|
|
264
|
+
isRowSelected(row: any): boolean;
|
|
265
|
+
getSelectableRows(): any[];
|
|
266
|
+
areAllSelectableRowsSelected(): boolean;
|
|
267
|
+
closeMultiple: boolean;
|
|
268
|
+
private updateCloseDisabled;
|
|
269
|
+
toggleRowSelection(row: any, event: Event): void;
|
|
270
|
+
toggleSelectAllRows(event: Event): void;
|
|
271
|
+
showImagesModal: boolean;
|
|
272
|
+
selectedImagesForPopup: any[];
|
|
273
|
+
selectedComment: any | null;
|
|
274
|
+
openImagesPopup(comment: any): void;
|
|
275
|
+
closeImagesPopup(): void;
|
|
276
|
+
getIconTypeList: any;
|
|
277
|
+
tagIconMap: Record<string, string>;
|
|
278
|
+
getIconType(): void;
|
|
279
|
+
onFilterPanelClosed(): void;
|
|
280
|
+
onFilterApply(filters: any): void;
|
|
281
|
+
revFilter: 'all' | 'accept' | 'reject' | 'pending';
|
|
282
|
+
onFilterChange(): any;
|
|
283
|
+
private getItemStatus;
|
|
284
|
+
matchesStatusFilter(item: any): boolean;
|
|
285
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketFootfallNewComponent, never>;
|
|
286
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketFootfallNewComponent, "lib-ticket-footfall-new", never, {}, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
287
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TicketclosepopupComponent {
|
|
4
|
+
activeModal: NgbActiveModal;
|
|
5
|
+
tangoTicket: any;
|
|
6
|
+
storeTicket: any;
|
|
7
|
+
centralOpsData: any;
|
|
8
|
+
tangoData: any;
|
|
9
|
+
constructor(activeModal: NgbActiveModal);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
submit(type: any): void;
|
|
12
|
+
closepopup(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketclosepopupComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketclosepopupComponent, "lib-ticketclosepopup", never, { "tangoTicket": { "alias": "tangoTicket"; "required": false; }; "storeTicket": { "alias": "storeTicket"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
}
|