clientScopeSql sweep whicn now removed the extra unessesary client joins

This commit is contained in:
johnnyq
2026-08-06 11:45:56 -04:00
parent 83383599a1
commit ddd9c2b56a
79 changed files with 139 additions and 174 deletions

View File

@@ -18,7 +18,7 @@ $sql = mysqli_query(
LEFT JOIN clients ON recurring_expense_client_id = client_id
WHERE DATE(recurring_expense_created_at) BETWEEN '$dtf' AND '$dtt'
AND (vendor_name LIKE '%$q%' OR client_name LIKE '%$q%' OR category_name LIKE '%$q%' OR account_name LIKE '%$q%' OR recurring_expense_description LIKE '%$q%' OR recurring_expense_amount LIKE '%$q%')
$access_permission_query
" . clientScopeSql('recurring_expense_client_id') . "
ORDER BY $sort $order LIMIT $record_from, $record_to"
);