From fa0885364051e0f8bb9ea157cd8d4867f2d3919f Mon Sep 17 00:00:00 2001 From: root Date: Fri, 17 May 2019 01:09:16 -0400 Subject: [PATCH] Tons of UI and code cleanups, renamed many sql tables and fields, started adding created_at and updated_at fields --- OLD_edit_client_modal.php | 76 + ...lient_modal.php => OLDadd_client_modal.php | 0 OLDedit_vendor_modal.php | 70 + ...ent_asset_modal.php => add_asset_modal.php | 26 +- add_category_modal.php | 6 +- add_client_modal.php | 58 +- add_client_vendor_modal.php | 71 - ...contact_modal.php => add_contact_modal.php | 4 +- ...t_domain_modal.php => add_domain_modal.php | 20 +- add_expense_copy_modal.php | 4 +- add_expense_modal.php | 4 +- ...lient_file_modal.php => add_file_modal.php | 6 +- add_invoice_modal.php | 30 +- ...cation_modal.php => add_location_modal.php | 38 +- ...ent_login_modal.php => add_login_modal.php | 26 +- ...network_modal.php => add_network_modal.php | 4 +- ...lient_note_modal.php => add_note_modal.php | 4 +- add_payment_modal.php | 141 +- ...voice_modal.php => add_recurring_modal.php | 49 +- ...cation_modal.php => add_software_modal.php | 14 +- add_mileage_modal.php => add_trip_modal.php | 10 +- add_vendor_modal.php | 1 + client.php | 23 +- client_assets.php | 88 +- client_contacts.php | 38 +- client_domains.php | 42 +- client_files.php | 8 +- client_locations.php | 37 +- client_logins.php | 34 +- client_networks.php | 30 +- client_notes.php | 26 +- client_print.php | 207 +- client_recurring.php | 46 +- client_routes.php | 4 +- client_side_nav.php | 14 +- ...nt_applications.php => client_software.php | 52 +- client_vendors.php | 47 +- clients.php | 9 +- config.php | 17 +- cron.php | 100 +- db.sql | 677 ------- edit_account_modal.php | 2 +- ...nt_asset_modal.php => edit_asset_modal.php | 80 +- edit_calendar_event_modal.php | 2 +- edit_category_modal.php | 8 +- edit_client_modal.php | 215 +- edit_client_vendor_modal.php | 49 - ...ontact_modal.php => edit_contact_modal.php | 18 +- ..._domain_modal.php => edit_domain_modal.php | 30 +- edit_expense_modal.php | 27 +- edit_invoice_modal.php | 16 +- ...ation_modal.php => edit_location_modal.php | 45 +- ...nt_login_modal.php => edit_login_modal.php | 16 +- ...etwork_modal.php => edit_network_modal.php | 16 +- ...ient_note_modal.php => edit_note_modal.php | 12 +- edit_product_modal.php | 2 +- ...ation_modal.php => edit_software_modal.php | 16 +- edit_ticket_modal.php | 2 +- edit_mileage_modal.php => edit_trip_modal.php | 16 +- edit_user_modal.php | 2 +- edit_vendor_modal.php | 187 +- global_search.php | 16 +- invoice.php | 38 +- post.php | 1734 ++--------------- quote.php | 40 +- recurring.php | 44 +- recurring_invoice.php | 84 +- side_nav.php | 6 +- mileage.php => trips.php | 36 +- vendors.php | 2 +- ...ient_file_modal.php => view_file_modal.php | 2 +- ...ient_note_modal.php => view_note_modal.php | 6 +- 72 files changed, 1625 insertions(+), 3305 deletions(-) create mode 100644 OLD_edit_client_modal.php rename old_add_client_modal.php => OLDadd_client_modal.php (100%) create mode 100644 OLDedit_vendor_modal.php rename add_client_asset_modal.php => add_asset_modal.php (89%) delete mode 100644 add_client_vendor_modal.php rename add_client_contact_modal.php => add_contact_modal.php (94%) rename add_client_domain_modal.php => add_domain_modal.php (76%) rename add_client_file_modal.php => add_file_modal.php (84%) rename add_client_location_modal.php => add_location_modal.php (66%) rename add_client_login_modal.php => add_login_modal.php (86%) rename add_client_network_modal.php => add_network_modal.php (93%) rename add_client_note_modal.php => add_note_modal.php (87%) rename add_recurring_invoice_modal.php => add_recurring_modal.php (68%) rename add_client_application_modal.php => add_software_modal.php (87%) rename add_mileage_modal.php => add_trip_modal.php (94%) rename client_applications.php => client_software.php (54%) rename edit_client_asset_modal.php => edit_asset_modal.php (65%) delete mode 100644 edit_client_vendor_modal.php rename edit_client_contact_modal.php => edit_contact_modal.php (76%) rename edit_client_domain_modal.php => edit_domain_modal.php (64%) rename edit_client_location_modal.php => edit_location_modal.php (56%) rename edit_client_login_modal.php => edit_login_modal.php (77%) rename edit_client_network_modal.php => edit_network_modal.php (79%) rename edit_client_note_modal.php => edit_note_modal.php (68%) rename edit_client_application_modal.php => edit_software_modal.php (70%) rename edit_mileage_modal.php => edit_trip_modal.php (80%) rename mileage.php => trips.php (58%) rename view_client_file_modal.php => view_file_modal.php (85%) rename view_client_note_modal.php => view_note_modal.php (69%) diff --git a/OLD_edit_client_modal.php b/OLD_edit_client_modal.php new file mode 100644 index 00000000..46425998 --- /dev/null +++ b/OLD_edit_client_modal.php @@ -0,0 +1,76 @@ + \ No newline at end of file diff --git a/old_add_client_modal.php b/OLDadd_client_modal.php similarity index 100% rename from old_add_client_modal.php rename to OLDadd_client_modal.php diff --git a/OLDedit_vendor_modal.php b/OLDedit_vendor_modal.php new file mode 100644 index 00000000..f0bfac23 --- /dev/null +++ b/OLDedit_vendor_modal.php @@ -0,0 +1,70 @@ + \ No newline at end of file diff --git a/add_client_asset_modal.php b/add_asset_modal.php similarity index 89% rename from add_client_asset_modal.php rename to add_asset_modal.php index fb018c11..da204b71 100644 --- a/add_client_asset_modal.php +++ b/add_asset_modal.php @@ -1,4 +1,4 @@ - diff --git a/add_client_vendor_modal.php b/add_client_vendor_modal.php deleted file mode 100644 index 4f990c83..00000000 --- a/add_client_vendor_modal.php +++ /dev/null @@ -1,71 +0,0 @@ - \ No newline at end of file diff --git a/add_client_contact_modal.php b/add_contact_modal.php similarity index 94% rename from add_client_contact_modal.php rename to add_contact_modal.php index 1bd7b04c..4d5ff7ef 100644 --- a/add_client_contact_modal.php +++ b/add_contact_modal.php @@ -1,4 +1,4 @@ -