mirror of
https://github.com/itflow-org/itflow
synced 2026-03-03 20:34:51 +00:00
Merge pull request #12 from twetech:unbilled-tickets-report
Add Unbilled Tickets Report
This commit is contained in:
@@ -18,6 +18,15 @@ if (isset($_GET['status']) && ($_GET['status']) == 'Open') {
|
|||||||
$ticket_status_snippet = "ticket_status != 'Closed'";
|
$ticket_status_snippet = "ticket_status != 'Closed'";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isset($_GET['billable']) && ($_GET['billable']) == '1') {
|
||||||
|
$billable = 1;
|
||||||
|
$ticket_billable_snippet = "ticket_billable = 1";
|
||||||
|
$ticket_status_snippet = '1 = 1';
|
||||||
|
} else {
|
||||||
|
$billable = 0;
|
||||||
|
$ticket_billable_snippet = '1 = 1';
|
||||||
|
}
|
||||||
|
|
||||||
//Rebuild URL
|
//Rebuild URL
|
||||||
$url_query_strings_sort = http_build_query($get_copy);
|
$url_query_strings_sort = http_build_query($get_copy);
|
||||||
|
|
||||||
@@ -31,6 +40,7 @@ $sql = mysqli_query(
|
|||||||
LEFT JOIN vendors ON ticket_vendor_id = vendor_id
|
LEFT JOIN vendors ON ticket_vendor_id = vendor_id
|
||||||
WHERE ticket_client_id = $client_id
|
WHERE ticket_client_id = $client_id
|
||||||
AND $ticket_status_snippet
|
AND $ticket_status_snippet
|
||||||
|
AND $ticket_billable_snippet
|
||||||
AND (CONCAT(ticket_prefix,ticket_number) LIKE '%$q%' OR ticket_subject LIKE '%$q%' OR ticket_status 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%')
|
AND (CONCAT(ticket_prefix,ticket_number) LIKE '%$q%' OR ticket_subject LIKE '%$q%' OR ticket_status 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%')
|
||||||
ORDER BY $sort $order LIMIT $record_from, $record_to"
|
ORDER BY $sort $order LIMIT $record_from, $record_to"
|
||||||
);
|
);
|
||||||
|
|||||||
183
report_tickets_unbilled.php
Normal file
183
report_tickets_unbilled.php
Normal file
@@ -0,0 +1,183 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
require_once "inc_all_reports.php";
|
||||||
|
|
||||||
|
validateTechRole();
|
||||||
|
validateAccountantRole();
|
||||||
|
|
||||||
|
function secondsToTime($inputSeconds) {
|
||||||
|
$secondsInAMinute = 60;
|
||||||
|
$secondsInAnHour = 60 * $secondsInAMinute;
|
||||||
|
$secondsInADay = 24 * $secondsInAnHour;
|
||||||
|
|
||||||
|
// Extract days
|
||||||
|
$days = floor($inputSeconds / $secondsInADay);
|
||||||
|
|
||||||
|
// Extract hours
|
||||||
|
$hourSeconds = $inputSeconds % $secondsInADay;
|
||||||
|
$hours = floor($hourSeconds / $secondsInAnHour);
|
||||||
|
|
||||||
|
// Extract minutes
|
||||||
|
$minuteSeconds = $hourSeconds % $secondsInAnHour;
|
||||||
|
$minutes = floor($minuteSeconds / $secondsInAMinute);
|
||||||
|
|
||||||
|
// Extract the remaining seconds
|
||||||
|
$remainingSeconds = $minuteSeconds % $secondsInAMinute;
|
||||||
|
$seconds = ceil($remainingSeconds);
|
||||||
|
|
||||||
|
// Format and return
|
||||||
|
$timeParts = [];
|
||||||
|
$sections = [
|
||||||
|
'day' => (int)$days,
|
||||||
|
'hour' => (int)$hours,
|
||||||
|
'minute' => (int)$minutes,
|
||||||
|
'second' => (int)$seconds,
|
||||||
|
];
|
||||||
|
|
||||||
|
foreach ($sections as $name => $value){
|
||||||
|
if ($value > 0){
|
||||||
|
$timeParts[] = $value. ' '.$name.($value == 1 ? '' : 's');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return implode(', ', $timeParts);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset($_GET['year'])) {
|
||||||
|
$year = intval($_GET['year']);
|
||||||
|
} else {
|
||||||
|
$year = date('Y');
|
||||||
|
}
|
||||||
|
|
||||||
|
$sql_ticket_years = mysqli_query($mysqli, "SELECT DISTINCT YEAR(ticket_created_at) AS ticket_year FROM tickets ORDER BY ticket_year DESC");
|
||||||
|
|
||||||
|
$sql_clients = mysqli_query($mysqli, "SELECT client_id, client_name FROM clients ORDER BY client_name ASC");
|
||||||
|
|
||||||
|
$rows = 0;
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div class="card card-dark">
|
||||||
|
<div class="card-header py-2">
|
||||||
|
<h3 class="card-title mt-2"><i class="fas fa-fw fa-life-ring mr-2"></i>Unbilled Tickets By Client</h3>
|
||||||
|
<div class="card-tools">
|
||||||
|
<button type="button" class="btn btn-primary d-print-none" onclick="window.print();"><i class="fas fa-fw fa-print mr-2"></i>Print</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<form class="mb-3">
|
||||||
|
<select onchange="this.form.submit()" class="form-control" name="year">
|
||||||
|
<?php
|
||||||
|
while ($row = mysqli_fetch_array($sql_ticket_years)) {
|
||||||
|
$ticket_year = intval($row['ticket_year']); ?>
|
||||||
|
<option <?php if ($year == $ticket_year) { ?> selected <?php } ?> > <?php echo $ticket_year; ?></option>
|
||||||
|
<?php } ?>
|
||||||
|
</select>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<div class="table-responsive-sm">
|
||||||
|
<table class="table table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Client</th>
|
||||||
|
<th class="text-right">Tickets Raised</th>
|
||||||
|
<th class="text-right">Billable Tickets</th>
|
||||||
|
<th class="text-right">Unbilled Tickets</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<?php
|
||||||
|
while ($row = mysqli_fetch_array($sql_clients)) {
|
||||||
|
$client_id = intval($row['client_id']);
|
||||||
|
$client_name = nullable_htmlentities($row['client_name']);
|
||||||
|
|
||||||
|
// Calculate total tickets raised in period
|
||||||
|
$sql_ticket_raised_count = mysqli_query(
|
||||||
|
$mysqli,
|
||||||
|
"SELECT
|
||||||
|
COUNT(ticket_id) AS ticket_raised_count
|
||||||
|
FROM
|
||||||
|
tickets
|
||||||
|
WHERE
|
||||||
|
YEAR(ticket_created_at) = $year
|
||||||
|
AND
|
||||||
|
ticket_client_id = $client_id"
|
||||||
|
);
|
||||||
|
$row = mysqli_fetch_array($sql_ticket_raised_count);
|
||||||
|
$ticket_raised_count = intval($row['ticket_raised_count']);
|
||||||
|
|
||||||
|
// Calculate total tickets raised in period that are closed and billable
|
||||||
|
$sql_ticket_closed_count = mysqli_query(
|
||||||
|
$mysqli,
|
||||||
|
"SELECT
|
||||||
|
COUNT(ticket_id) AS ticket_closed_count
|
||||||
|
FROM
|
||||||
|
tickets
|
||||||
|
WHERE
|
||||||
|
YEAR(ticket_created_at) = $year
|
||||||
|
AND
|
||||||
|
ticket_client_id = $client_id
|
||||||
|
AND
|
||||||
|
ticket_status = 'Closed'
|
||||||
|
AND
|
||||||
|
ticket_billable = 1
|
||||||
|
");
|
||||||
|
$row = mysqli_fetch_array($sql_ticket_closed_count);
|
||||||
|
$ticket_closed_count = intval($row['ticket_closed_count']);
|
||||||
|
|
||||||
|
// Calculate total tickets raised in period that are closed and billable, but not invoiced
|
||||||
|
$sql_ticket_unbilled_count = mysqli_query(
|
||||||
|
$mysqli,
|
||||||
|
"SELECT
|
||||||
|
COUNT(ticket_id) AS ticket_unbilled_count
|
||||||
|
FROM
|
||||||
|
tickets
|
||||||
|
WHERE
|
||||||
|
YEAR(ticket_created_at) = $year
|
||||||
|
AND
|
||||||
|
ticket_client_id = $client_id
|
||||||
|
AND
|
||||||
|
ticket_status = 'Closed'
|
||||||
|
AND
|
||||||
|
ticket_billable = 1
|
||||||
|
AND
|
||||||
|
ticket_invoice_id = 0");
|
||||||
|
$row = mysqli_fetch_array($sql_ticket_unbilled_count);
|
||||||
|
$ticket_unbilled_count = intval($row['ticket_unbilled_count']);
|
||||||
|
|
||||||
|
if ($ticket_unbilled_count > 0) {
|
||||||
|
$rows = $rows++;
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="client_tickets.php?client_id=<?php echo $client_id; ?>&billable=1&unbilled"><?php echo $client_name; ?></a>
|
||||||
|
</td>
|
||||||
|
<td class="text-right"><?php echo $ticket_raised_count; ?></td>
|
||||||
|
<td class="text-right"><?php echo $ticket_closed_count; ?></td>
|
||||||
|
<td class="text-right"><?php echo $ticket_unbilled_count; ?></td>
|
||||||
|
</tr>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($rows == 0) {
|
||||||
|
?>
|
||||||
|
<tr>
|
||||||
|
<td colspan="4">You are all caught up! There are no unbilled tickets for this year.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
require_once "footer.php";
|
||||||
|
|
||||||
@@ -82,6 +82,12 @@
|
|||||||
<p>Collections</p>
|
<p>Collections</p>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="report_tickets_unbilled.php" class="nav-link <?php if (basename($_SERVER["PHP_SELF"]) == "report_tickets_unbilled.php") { echo "active"; } ?>">
|
||||||
|
<i class="nav-icon fas fa-life-ring"></i>
|
||||||
|
<p>Unbilled Tickets</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
<?php } // End financial reports IF statement ?>
|
<?php } // End financial reports IF statement ?>
|
||||||
|
|
||||||
<?php if ($session_user_role == 2 || $session_user_role == 3) { ?>
|
<?php if ($session_user_role == 2 || $session_user_role == 3) { ?>
|
||||||
@@ -92,6 +98,7 @@
|
|||||||
<p>Tickets</p>
|
<p>Tickets</p>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="nav-item">
|
<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"; } ?>">
|
<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>
|
<i class="nav-icon fas fa-life-ring"></i>
|
||||||
|
|||||||
Reference in New Issue
Block a user