Feature: Added Optional Client Field to Expenses to track your expenses to the client

This commit is contained in:
johnnyq
2023-04-03 19:08:37 -04:00
parent c544dc4a2a
commit 230efc83dd
6 changed files with 127 additions and 25 deletions

View File

@@ -3,6 +3,7 @@ $date = sanitizeInput($_POST['date']);
$amount = floatval($_POST['amount']);
$account = intval($_POST['account']);
$vendor = intval($_POST['vendor']);
$client = intval($_POST['client']);
$category = intval($_POST['category']);
$description = sanitizeInput($_POST['description']);
$reference = sanitizeInput($_POST['reference']);