diff --git a/CHANGELOG.md b/CHANGELOG.md index cb66fc01..893bd26d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ This file documents all notable changes made to ITFlow. - Clone asset interfaces when assets are transferred between clients ### Added / Changed +- Client Overview section to view all client things like assets, contacts, licenses, credentials etc +- Quick peek for asset details and contact details, document viewing throughout ITFlow App allows, all possible because of AJAX. - Simple Drag and Drop Ordering for Invoices, Recurring Invoices, Quotes, Ticket Tasks and Ticket Template Tasks. - Added a kanban view for tickets - Migrated all repeating modals to new ajax modal function for faster loading times and to allow for very quick development @@ -17,6 +19,9 @@ This file documents all notable changes made to ITFlow. - Client Portal now shows ticket category - Custom links can now be added to the client portal navbar +### Breaking Changes +- Cron scripts have officially moved to /scripts and are no longer in the root directy they must be updated for them to work + ## [25.01.3] ### Fixed - Fixed ticket assignment modal showing client contacts. diff --git a/ajax/ajax_product_edit.php b/ajax/ajax_product_edit.php index 66aeb1f3..f7093fae 100644 --- a/ajax/ajax_product_edit.php +++ b/ajax/ajax_product_edit.php @@ -11,7 +11,7 @@ $product_name = nullable_htmlentities($row['product_name']); $product_description = nullable_htmlentities($row['product_description']); $product_price = floatval($row['product_price']); $product_created_at = nullable_htmlentities($row['product_created_at']); -$category_id = intval($row['category_id']); +$category_id = intval($row['product_category_id']); $product_tax_id = intval($row['product_tax_id']); // Generate the HTML form content using output buffering.