Add more billable status functionality

This commit is contained in:
o-psi
2023-12-21 17:10:15 +00:00
parent f1516b06ee
commit 3eaaf73744
7 changed files with 123 additions and 2 deletions

View File

@@ -68,7 +68,7 @@
<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">
<select class="form-control" name="billable">
<option <?php if ($ticket_billable == 1) { echo "selected"; } ?> value="1">Yes</option>
<option <?php if ($ticket_billable == 0) { echo "selected"; } ?> value="0">No</option>
</select>