tango-app-ui-manage-tickets 3.7.0-beta.64 → 3.7.0-beta.66

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.
@@ -4006,12 +4006,11 @@ class TicketFootfallNewComponent {
4006
4006
  getHeaderStatus() {
4007
4007
  // Default: ticket-level status
4008
4008
  let headerStatus = this.ticketData?.status || '--';
4009
- if (headerStatus === 'Open') {
4010
- this.isCheckboxEnable = false;
4011
- }
4012
- else if (headerStatus === 'In-Progress') {
4013
- this.isCheckboxEnable = true;
4014
- }
4009
+ // if(headerStatus === 'Open'){
4010
+ // this.isCheckboxEnable =false;
4011
+ // } else if(headerStatus === 'In-Progress'){
4012
+ // this.isCheckboxEnable =true;
4013
+ // }
4015
4014
  if (!this.footfallTicketsData || !this.footfallTicketsData.length) {
4016
4015
  return headerStatus;
4017
4016
  }
@@ -5924,8 +5923,7 @@ class TicketFootfallNewComponent {
5924
5923
  userName: this.selectedReviewer?.userName,
5925
5924
  actionType: this.hasApproverAccess && this.selectedRole === 'approver' ? "approve" : "review",
5926
5925
  storeId: this.ticketData?.storeId,
5927
- dateString: this.ticketData?.issueDate,
5928
- tangoType: this.tangoType
5926
+ dateString: this.ticketData?.issueDate
5929
5927
  };
5930
5928
  this.service.getTicketAssignApi(obj).pipe(takeUntil(this.destroy$))
5931
5929
  .subscribe({