tango-app-ui-manage-tickets 3.7.0-beta.73 → 3.7.0-beta.74
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.
|
@@ -4688,6 +4688,7 @@ class TicketFootfallNewComponent {
|
|
|
4688
4688
|
this.selectedCommentCategory = null;
|
|
4689
4689
|
this.resetSelections();
|
|
4690
4690
|
this.allSelected = false;
|
|
4691
|
+
this.closeMultiple = true;
|
|
4691
4692
|
}
|
|
4692
4693
|
isCollapsed = false;
|
|
4693
4694
|
toggleSidebar() {
|
|
@@ -5253,7 +5254,7 @@ class TicketFootfallNewComponent {
|
|
|
5253
5254
|
this.footfallTicketsData = [];
|
|
5254
5255
|
this.footfallNoData = true;
|
|
5255
5256
|
this.footfallLoading = false;
|
|
5256
|
-
this.ts.getErrorToast("No
|
|
5257
|
+
this.ts.getErrorToast("No open tickets available based on the applied filters");
|
|
5257
5258
|
}
|
|
5258
5259
|
else {
|
|
5259
5260
|
this.footfallTicketsData = res?.data?.result ?? [];
|
|
@@ -6090,7 +6091,7 @@ class TicketFootfallNewComponent {
|
|
|
6090
6091
|
// this.ts.getErrorToast('Please select at least one ticket');
|
|
6091
6092
|
// return;
|
|
6092
6093
|
// }
|
|
6093
|
-
let ticketList;
|
|
6094
|
+
let ticketList = [];
|
|
6094
6095
|
if (this.selectedStores?.length) {
|
|
6095
6096
|
// When multiple stores are selected
|
|
6096
6097
|
ticketList = this.selectedStores.map((store) => ({
|
|
@@ -6117,6 +6118,7 @@ class TicketFootfallNewComponent {
|
|
|
6117
6118
|
this.viewTicket(this.tangoType);
|
|
6118
6119
|
this.selectedStores = [];
|
|
6119
6120
|
this.allSelected = false;
|
|
6121
|
+
this.closeMultiple = true;
|
|
6120
6122
|
}
|
|
6121
6123
|
else {
|
|
6122
6124
|
// this.toastService.getErrorToast('Failed to close tickets');
|