From dccec2d5f599c69b0ae544a0d16da997dd581af1 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sat, 9 Dec 2023 15:04:30 -0500 Subject: [PATCH] Removed actions column from tickets as edit ticket and Delete should be done within the ticket itself, however you can still change priotity and assigned to within the list view. This makes a tremendous impact on performance as ticket details wont need loaded for each row Soon we will impelment bulk actions --- tickets.php | 51 ++++++++++----------------------------------------- 1 file changed, 10 insertions(+), 41 deletions(-) diff --git a/tickets.php b/tickets.php index 1d471b30..e369638e 100644 --- a/tickets.php +++ b/tickets.php @@ -265,7 +265,6 @@ $user_active_assigned_tickets = intval($row['total_tickets_assigned']); href="?&sort=ticket_created_at&order=">Created - Action @@ -276,7 +275,6 @@ $user_active_assigned_tickets = intval($row['total_tickets_assigned']); $ticket_prefix = nullable_htmlentities($row['ticket_prefix']); $ticket_number = intval($row['ticket_number']); $ticket_subject = nullable_htmlentities($row['ticket_subject']); - $ticket_details = nullable_htmlentities($row['ticket_details']); $ticket_priority = nullable_htmlentities($row['ticket_priority']); $ticket_status = nullable_htmlentities($row['ticket_status']); $ticket_vendor_ticket_number = nullable_htmlentities($row['ticket_vendor_ticket_number']); @@ -356,7 +354,7 @@ $user_active_assigned_tickets = intval($row['total_tickets_assigned']); -
+
@@ -367,46 +365,19 @@ $user_active_assigned_tickets = intval($row['total_tickets_assigned']);
- - - - - @@ -425,5 +396,3 @@ require_once "ticket_add_modal.php"; require_once "footer.php"; ?> - -