mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
rename /user/ to /agent/ and update links to use agent/ instead
This commit is contained in:
59
agent/modals/invoice/invoice_add_ticket.php
Normal file
59
agent/modals/invoice/invoice_add_ticket.php
Normal file
@@ -0,0 +1,59 @@
|
||||
|
||||
<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>
|
||||
|
||||
Reference in New Issue
Block a user