mirror of
https://github.com/itflow-org/itflow
synced 2026-03-02 03:44:53 +00:00
Kanban - move to v2 (rewritten style)
This commit is contained in:
@@ -1,157 +0,0 @@
|
|||||||
<link rel="stylesheet" href="css/ticket_kanban.css">
|
|
||||||
|
|
||||||
<?php
|
|
||||||
|
|
||||||
$kanban = [];
|
|
||||||
|
|
||||||
// Fetch all statuses
|
|
||||||
$status_sql = mysqli_query($mysqli, "SELECT * FROM ticket_statuses where ticket_status_active = 1 AND ticket_status_id != 5 ORDER BY ticket_status_order");
|
|
||||||
$statuses = [];
|
|
||||||
while ($status_row = mysqli_fetch_assoc($status_sql)) {
|
|
||||||
$id = $status_row['ticket_status_id'];
|
|
||||||
$name = nullable_htmlentities($status_row['ticket_status_name']);
|
|
||||||
$kanban_order = $status_row['ticket_status_order'];
|
|
||||||
|
|
||||||
$statuses[$id] = new stdClass();
|
|
||||||
$statuses[$id]->id = $id;
|
|
||||||
$statuses[$id]->name = $name;
|
|
||||||
$statuses[$id]->tickets = [];
|
|
||||||
$statuses[$id]->order = $kanban_order; // Store the order
|
|
||||||
}
|
|
||||||
|
|
||||||
$ordering_snippet = "ORDER BY
|
|
||||||
CASE
|
|
||||||
WHEN ticket_priority = 'High' THEN 1
|
|
||||||
WHEN ticket_priority = 'Medium' THEN 2
|
|
||||||
WHEN ticket_priority = 'Low' THEN 3
|
|
||||||
ELSE 4
|
|
||||||
END,
|
|
||||||
ticket_id DESC";
|
|
||||||
|
|
||||||
if ($config_ticket_ordering === 1) {
|
|
||||||
$ordering_snippet = "ORDER BY ticket_order ASC";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fetch tickets and merge into statuses
|
|
||||||
$sql = mysqli_query(
|
|
||||||
$mysqli,
|
|
||||||
"SELECT SQL_CALC_FOUND_ROWS * FROM tickets
|
|
||||||
LEFT JOIN clients ON ticket_client_id = client_id
|
|
||||||
LEFT JOIN contacts ON ticket_contact_id = contact_id
|
|
||||||
LEFT JOIN users ON ticket_assigned_to = user_id
|
|
||||||
LEFT JOIN assets ON ticket_asset_id = asset_id
|
|
||||||
LEFT JOIN locations ON ticket_location_id = location_id
|
|
||||||
LEFT JOIN vendors ON ticket_vendor_id = vendor_id
|
|
||||||
LEFT JOIN ticket_statuses ON ticket_status = ticket_status_id
|
|
||||||
LEFT JOIN categories ON ticket_category = category_id
|
|
||||||
WHERE $ticket_status_snippet " . $ticket_assigned_query . "
|
|
||||||
$category_query
|
|
||||||
$client_query
|
|
||||||
AND DATE(ticket_created_at) BETWEEN '$dtf' AND '$dtt'
|
|
||||||
AND (CONCAT(ticket_prefix,ticket_number) LIKE '%$q%' OR client_name LIKE '%$q%' OR ticket_subject LIKE '%$q%' OR ticket_status_name LIKE '%$q%' OR ticket_priority LIKE '%$q%' OR user_name LIKE '%$q%' OR contact_name LIKE '%$q%' OR asset_name LIKE '%$q%' OR vendor_name LIKE '%$q%' OR ticket_vendor_ticket_number LIKE '%q%')
|
|
||||||
$ticket_permission_snippet
|
|
||||||
$ordering_snippet"
|
|
||||||
);
|
|
||||||
|
|
||||||
while ($row = mysqli_fetch_assoc($sql)) {
|
|
||||||
$id = $row['ticket_status_id'];
|
|
||||||
$ticket_order = $row['ticket_order'];
|
|
||||||
|
|
||||||
// Loop over all items in $row to apply nullable_htmlentities only if the content is a string
|
|
||||||
foreach ($row as $key => $value) {
|
|
||||||
if (is_string($value)) {
|
|
||||||
$row[$key] = nullable_htmlentities($value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($statuses[$id])) {
|
|
||||||
$statuses[$id]->tickets[] = $row;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Convert associative array to indexed array for sorting
|
|
||||||
$kanban = array_values($statuses);
|
|
||||||
|
|
||||||
?>
|
|
||||||
|
|
||||||
<div class="container-fluid" id="kanban-board">
|
|
||||||
<?php
|
|
||||||
foreach($kanban as $kanban_column){
|
|
||||||
|
|
||||||
?>
|
|
||||||
<div class="kanban-column card card-dark" data-status-id="<?=htmlspecialchars($kanban_column->id); ?>">
|
|
||||||
<h6 class="panel-title"><?=htmlspecialchars($kanban_column->name); ?></h6>
|
|
||||||
<div class="kanban-status" data-column-name="<?=$kanban_column->name?>" data-status-id="<?=htmlspecialchars($kanban_column->id); ?>">
|
|
||||||
<?php
|
|
||||||
foreach($kanban_column->tickets as $item){
|
|
||||||
if ($item['ticket_priority'] == "High") {
|
|
||||||
$ticket_priority_color = "danger";
|
|
||||||
} elseif ($item['ticket_priority'] == "Medium") {
|
|
||||||
$ticket_priority_color = "warning";
|
|
||||||
} else {
|
|
||||||
$ticket_priority_color = "info";
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
|
|
||||||
<div
|
|
||||||
class="task grab-cursor"
|
|
||||||
data-ticket-id= "<?=$item['ticket_id']?>"
|
|
||||||
data-ticket-status-id= "<?=$item['ticket_status_id']?>"
|
|
||||||
ondblclick="window.location.href='ticket.php?ticket_id=<?php echo $item['ticket_id']; ?>'"
|
|
||||||
>
|
|
||||||
<span class='badge badge-<?php echo $ticket_priority_color; ?>'>
|
|
||||||
<?php echo $item['ticket_priority']; ?>
|
|
||||||
</span>
|
|
||||||
<span class='badge badge-secondary'>
|
|
||||||
<?php echo $item['category_name']; ?>
|
|
||||||
</span>
|
|
||||||
<div class='btn btn-light drag-handle-class' style="display: none;">
|
|
||||||
<i class="drag-handle-class fas fa-bars"></i>
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
<b>
|
|
||||||
<?php
|
|
||||||
if (!$client_url) {
|
|
||||||
if ($item['contact_name'] != ""){
|
|
||||||
echo $item['client_name'] . ' - ' . $item['contact_name'];
|
|
||||||
} else {
|
|
||||||
echo $item['client_name'];
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
echo $item['contact_name'];
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
</b>
|
|
||||||
<br>
|
|
||||||
<?php if ($item['asset_name'] != "") {?>
|
|
||||||
<i class="fa fa-fw fa-desktop text-secondary mr-2"></i><?=$item['asset_name']?>
|
|
||||||
<br>
|
|
||||||
<?php } ?>
|
|
||||||
<i class="fa fa-fw fa fa-life-ring text-secondary mr-2"></i><?=$item['ticket_subject']?>
|
|
||||||
<br>
|
|
||||||
<i class="fas fa-fw fa-user mr-2 text-secondary"></i><?=$item['user_name']?>
|
|
||||||
<br>
|
|
||||||
<?php if ($item['ticket_schedule'] != "") {?>
|
|
||||||
<i class="fa fa-fw fa-calendar-check text-secondary mr-2"></i><span class="badge badge-warning"><?=$item['ticket_schedule']?></span>
|
|
||||||
<?php } ?>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<?php
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<?php
|
|
||||||
echo "<script>";
|
|
||||||
echo "const CONFIG_TICKET_MOVING_COLUMNS = " . json_encode($config_ticket_moving_columns) . ";";
|
|
||||||
echo "const CONFIG_TICKET_ORDERING = " . json_encode($config_ticket_ordering) . ";";
|
|
||||||
echo "</script>";
|
|
||||||
?>
|
|
||||||
<script src="../plugins/SortableJS/Sortable.min.js"></script>
|
|
||||||
<script src="js/tickets_kanban.js"></script>
|
|
||||||
@@ -247,8 +247,7 @@ $sql_categories_filter = mysqli_query(
|
|||||||
<a class="dropdown-item" href="<?=htmlspecialchars('?' . http_build_query(array_merge($_GET, ['view' => 'list']))); ?>">List</a>
|
<a class="dropdown-item" href="<?=htmlspecialchars('?' . http_build_query(array_merge($_GET, ['view' => 'list']))); ?>">List</a>
|
||||||
<?php if ($status !== 'Closed') {?>
|
<?php if ($status !== 'Closed') {?>
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
<a class="dropdown-item " href="<?=htmlspecialchars('?' . http_build_query(array_merge($_GET, ['view' => 'kanban']))); ?>">Kanban</a>
|
<a class="dropdown-item " href="<?=htmlspecialchars('?' . http_build_query(array_merge($_GET, ['view' => 'kanbanv2']))); ?>">Kanban</a>
|
||||||
<a class="dropdown-item " href="<?=htmlspecialchars('?' . http_build_query(array_merge($_GET, ['view' => 'kanbanv2']))); ?>">Kanban (v2)</a>
|
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -423,8 +422,6 @@ $sql_categories_filter = mysqli_query(
|
|||||||
if (isset($_GET["view"])) {
|
if (isset($_GET["view"])) {
|
||||||
if ($_GET["view"] == "list") {
|
if ($_GET["view"] == "list") {
|
||||||
require_once "ticket_list.php";
|
require_once "ticket_list.php";
|
||||||
} elseif ($_GET["view"] == "kanban") {
|
|
||||||
require_once "ticket_kanban.php";
|
|
||||||
} elseif ($_GET["view"] == "kanbanv2") {
|
} elseif ($_GET["view"] == "kanbanv2") {
|
||||||
require_once "ticket_kanban_v2.php";
|
require_once "ticket_kanban_v2.php";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user