Add Label to add column on invoice add ticket modal

This commit is contained in:
o-psi
2024-01-10 21:09:07 +00:00
parent 4ed2c7923c
commit 945eb7c87a
+2 -3
View File
@@ -13,7 +13,7 @@
<tr> <tr>
<th>Ticket Number</th> <th>Ticket Number</th>
<th>Scope</th> <th>Scope</th>
<th></th> <th>Add to Invoice</th>
</tr> </tr>
<?php while ($row = mysqli_fetch_array($sql_tickets_billable)) { <?php while ($row = mysqli_fetch_array($sql_tickets_billable)) {
$ticket_id = intval($row['ticket_id']); $ticket_id = intval($row['ticket_id']);
@@ -24,8 +24,7 @@
<td><?php echo $ticket_subject ?></td> <td><?php echo $ticket_subject ?></td>
<td></td> <td></td>
<td><a href='ticket.php?ticket_id=<?php echo $ticket_id?>&invoice_id=<?php echo $invoice_id?>#addInvoiceFromTicketModal'> <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> <i class="fas fa-fw fa-plus-circle"></i></td>
</td>
</tr> </tr>
<?php } ?> <?php } ?>
</table> </table>