Default Tickets to not billable and add Billable option to Create Ticket

This commit is contained in:
johnnyq
2024-05-27 13:46:17 -04:00
parent 1c5cb0123c
commit c389c68883
2 changed files with 15 additions and 139 deletions

View File

@@ -139,6 +139,21 @@
</div>
</div>
<?php if ($config_module_enable_accounting) { ?>
<div class="form-group">
<label>Billable</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-money-bill"></i></span>
</div>
<select class="form-control select2" name="billable">
<option value="0">Yes</option>
<option value="1" selected>No</option>
</select>
</div>
</div>
<?php } ?>
</div>
<?php if (isset($_GET['client_id'])) { ?>