Reporting

- Add ticket summary & ticket by client report (#514)
- General tidy
This commit is contained in:
Marcus Hill
2023-02-04 16:59:30 +00:00
parent aad55c6d56
commit e5a5aebc2c
9 changed files with 264 additions and 39 deletions

View File

@@ -63,6 +63,23 @@
</li>
<?php } // End financial reports IF statement ?>
<?php if ($session_user_role == 2 || $session_user_role == 3) { ?>
<li class="nav-header">TECHNICAL</li>
<li class="nav-item">
<a href="report_ticket_summary.php" class="nav-link <?php if (basename($_SERVER["PHP_SELF"]) == "report_ticket_summary.php") { echo "active"; } ?>">
<i class="nav-icon fas fa-life-ring"></i>
<p>Tickets</p>
</a>
</li>
<li class="nav-item">
<a href="report_ticket_by_client.php" class="nav-link <?php if (basename($_SERVER["PHP_SELF"]) == "report_ticket_by_client.php") { echo "active"; } ?>">
<i class="nav-icon fas fa-life-ring"></i>
<p>Tickets by Client</p>
</a>
</li>
<?php } // End technical reports IF statement ?>
</ul>
</nav>