Started Logs: Login attempts are now logged, created a logs list in the side nav

This commit is contained in:
johnny@pittpc.com
2019-09-06 00:16:19 -04:00
parent e47853f9cd
commit d259d1b3dc
7 changed files with 138 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ if(isset($_GET['year'])){
$year = date('Y');
}
$sql_payment_years = mysqli_query($mysqli,"SELECT DISTINCT YEAR(payment_date) AS payment_year FROM payments UNION SELECT DISTINCT YEAR(revenue_date) AS payment_year FROM revenues ORDER BY payment_year DESC");
$sql_payment_years = mysqli_query($mysqli,"SELECT DISTINCT YEAR(payment_date) AS payment_year FROM payments WHERE company_id = $session_company_id UNION SELECT DISTINCT YEAR(revenue_date) AS payment_year FROM revenues WHERE company_id = $session_company_id ORDER BY payment_year DESC");
$sql_categories = mysqli_query($mysqli,"SELECT * FROM categories WHERE category_type = 'Income' AND company_id = $session_company_id ORDER BY category_name ASC");