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

@@ -3,4 +3,5 @@ $date = sanitizeInput($_POST['date']);
$amount = floatval($_POST['amount']);
$account_from = intval($_POST['account_from']);
$account_to = intval($_POST['account_to']);
$transfer_method = sanitizeInput($_POST['transfer_method']);
$notes = sanitizeInput($_POST['notes']);