Added cancelled status to invoice, invoice copy now works, minor ui cleanups, added tickets to client page

This commit is contained in:
root
2019-05-15 02:06:58 -04:00
parent f44b9b19fa
commit 13c330d3b1
19 changed files with 325 additions and 59 deletions

View File

@@ -43,7 +43,7 @@
<?php
$sql_income_category = mysqli_query($mysqli,"SELECT * FROM categories WHERE category_type = 'Income'");
while($row = mysqli_fetch_array($income_category)){
while($row = mysqli_fetch_array($sql_income_category)){
$category_id = $row['category_id'];
$category_name = $row['category_name'];
?>