diff --git a/app/Views/ticket_search.php b/app/Views/ticket_search.php index 1efb07c1..7594a910 100644 --- a/app/Views/ticket_search.php +++ b/app/Views/ticket_search.php @@ -125,7 +125,7 @@
@@ -204,11 +204,15 @@ function fetchTicketListData() { tpa_id: tpa_id, }; + let filterData = requestData; + localStorage.setItem('filterData', JSON.stringify(filterData)); + console.log("requestData", requestData); var url = '= base_url('/ticket/list') ?>'; $('.loader').fadeIn(); $('.loader-mask').fadeIn(); + sendAjaxRequestForGlobal(url, 'POST', requestData, function(response) { console.log('Filter Responce', response); @@ -234,6 +238,88 @@ function fetchTicketListData() { $('.loader').fadeOut(); $('.loader-mask').delay(350).fadeOut('slow'); }); + + } + + + + + \ No newline at end of file