Fix broken product edit due to wrong field being called

This commit is contained in:
johnnyq 2025-02-22 13:15:15 -05:00
parent 5d18e85d62
commit 58a8f08bd2
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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.