Added Linking client to calendar events, added email event to add event, and many other small small fixes

This commit is contained in:
johnny@pittpc.com
2019-09-17 13:54:46 -04:00
parent 3439058053
commit e2b97afa20
7 changed files with 220 additions and 73 deletions

View File

@@ -44,7 +44,7 @@
AND expenses.vendor_id = vendors.vendor_id
AND expenses.account_id = accounts.account_id
AND expenses.company_id = $session_company_id
AND (vendor_name LIKE '%$q%' OR category_name LIKE '%$q%' OR account_name LIKE '%$q%')
AND (vendor_name LIKE '%$q%' OR category_name LIKE '%$q%' OR account_name LIKE '%$q%' OR expense_description LIKE '%$q%')
ORDER BY $sb $o LIMIT $record_from, $record_to");
$num_rows = mysqli_fetch_row(mysqli_query($mysqli,"SELECT FOUND_ROWS()"));