Cleaned up UI a bit invoice, side_menu, client, started working on bank transfers

This commit is contained in:
root
2019-04-06 17:45:52 -04:00
parent 83ab654824
commit 0fc29c0271
16 changed files with 245 additions and 298 deletions

View File

@@ -1,10 +1,7 @@
<?php
if(isset($_GET['tab'])){
if($_GET['tab'] == "details"){
include("client_details.php");
}
elseif($_GET['tab'] == "contacts"){
if($_GET['tab'] == "contacts"){
include("client_contacts.php");
}
elseif($_GET['tab'] == "locations"){
@@ -45,7 +42,7 @@ if(isset($_GET['tab'])){
}
}
else{
include("client_details.php");
include("client_contacts.php");
}
?>