mirror of https://github.com/itflow-org/itflow
60 lines
2.8 KiB
PHP
60 lines
2.8 KiB
PHP
|
|
<div class="modal" id="addTicketModal">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header bg-dark">
|
|
<h5 class="modal-title"><i class="fas fa-fw fa-file-invoice mr-2"></i>Add Unbilled Ticket to Invoice</h5>
|
|
<button type="button" class="close text-white" data-dismiss="modal">
|
|
<span>×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Ticket Number</th>
|
|
<th>Scope</th>
|
|
<th>Add to Invoice</th>
|
|
</tr>
|
|
</thead>
|
|
<?php while ($row = mysqli_fetch_array($sql_tickets_billable)) {
|
|
$ticket_id = intval($row['ticket_id']);
|
|
$ticket_subject = nullable_htmlentities($row['ticket_subject']);
|
|
$ticket_number = intval($row['ticket_number']);
|
|
$ticket_prefix = nullable_htmlentities($row['ticket_prefix']);
|
|
$ticket_status = nullable_htmlentities($row['ticket_status']);
|
|
|
|
switch ($ticket_status) {
|
|
case 'Closed':
|
|
$ticket_status_class = 'badge-dark';
|
|
break;
|
|
case 'Auto Close':
|
|
$ticket_status_class = 'badge-warning';
|
|
break;
|
|
default:
|
|
$ticket_status_class = 'badge-secondary';
|
|
break;
|
|
}
|
|
|
|
|
|
?>
|
|
<tr>
|
|
<td>
|
|
<a href="ticket.php?ticket_id=<?php echo $ticket_id; ?>">
|
|
<span class="badge badge-pill <?php echo $ticket_status_class?> p-3"><?php echo "$ticket_prefix$ticket_number"; ?></span>
|
|
</a>
|
|
</td>
|
|
<td><?php echo $ticket_subject ?></td>
|
|
<td><a href='ticket.php?ticket_id=<?php echo $ticket_id?>&invoice_id=<?php echo $invoice_id?>#addInvoiceFromTicketModal'>
|
|
<i class="fas fa-fw fa-plus-circle"></i></td>
|
|
</tr>
|
|
<?php } ?>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|