Change expense client to client_id post var

This commit is contained in:
johnnyq
2026-03-06 18:40:01 -05:00
parent fcf098f494
commit 60b6c245ef
4 changed files with 7 additions and 7 deletions

View File

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