Added Method of Transfer to Transfers frontend, currently uses payment type category and is optional useful to see how the money got transferred

This commit is contained in:
johnnyq
2024-03-05 19:22:05 -05:00
parent 1dfc819660
commit 37a4f5cee0
6 changed files with 59 additions and 5 deletions

View File

@@ -143,6 +143,29 @@
</div>
</div>
<div class="form-group">
<label>Transfer Method <strong class="text-danger">*</strong></label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-money-check-alt"></i></span>
</div>
<select class="form-control select2" name="transfer_method">
<option value="">- Method of Transfer -</option>
<?php
$sql = mysqli_query($mysqli, "SELECT * FROM categories WHERE category_type = 'Payment Method' AND category_archived_at IS NULL ORDER BY category_name ASC");
while ($row = mysqli_fetch_array($sql)) {
$category_name = nullable_htmlentities($row['category_name']);
?>
<option><?php echo $category_name; ?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
<div class="modal-footer bg-white">