mirror of https://github.com/itflow-org/itflow
Fix broken product edit due to wrong field being called
This commit is contained in:
parent
5d18e85d62
commit
58a8f08bd2
|
|
@ -10,6 +10,8 @@ This file documents all notable changes made to ITFlow.
|
||||||
- Clone asset interfaces when assets are transferred between clients
|
- Clone asset interfaces when assets are transferred between clients
|
||||||
|
|
||||||
### Added / Changed
|
### 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.
|
- Simple Drag and Drop Ordering for Invoices, Recurring Invoices, Quotes, Ticket Tasks and Ticket Template Tasks.
|
||||||
- Added a kanban view for tickets
|
- 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
|
- 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
|
- Client Portal now shows ticket category
|
||||||
- Custom links can now be added to the client portal navbar
|
- 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]
|
## [25.01.3]
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fixed ticket assignment modal showing client contacts.
|
- Fixed ticket assignment modal showing client contacts.
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ $product_name = nullable_htmlentities($row['product_name']);
|
||||||
$product_description = nullable_htmlentities($row['product_description']);
|
$product_description = nullable_htmlentities($row['product_description']);
|
||||||
$product_price = floatval($row['product_price']);
|
$product_price = floatval($row['product_price']);
|
||||||
$product_created_at = nullable_htmlentities($row['product_created_at']);
|
$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']);
|
$product_tax_id = intval($row['product_tax_id']);
|
||||||
|
|
||||||
// Generate the HTML form content using output buffering.
|
// Generate the HTML form content using output buffering.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue