From cdc87562c97ff3afe9e410667114d58fdbd78532 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Tue, 26 Mar 2024 15:11:57 -0400 Subject: [PATCH] Ticket Details UI Enhancements, Dont display entity cards if no data, Moved Add Entities to the Top Bar along with Invoice and Close Ticket. Combine the Client Details and Assign Card into one card, and Tidy Work --- ticket.php | 400 +++++++++++++++++++++++++---------------------------- 1 file changed, 187 insertions(+), 213 deletions(-) diff --git a/ticket.php b/ticket.php index 5fb31649..89175b86 100644 --- a/ticket.php +++ b/ticket.php @@ -229,6 +229,10 @@ if (isset($_GET['ticket_id'])) { ); + // Get Watchers + $sql_ticket_watchers = mysqli_query($mysqli, "SELECT * FROM ticket_watchers WHERE watcher_ticket_id = $ticket_id ORDER BY watcher_email DESC"); + + // Get Ticket Attachments $sql_ticket_attachments = mysqli_query( $mysqli, @@ -255,34 +259,71 @@ if (isset($_GET['ticket_id'])) {
-
+

Ticket

-
-