Add captured object to convert PNG images to JPG format
Introduced a new captured object that converts PNG images to JPG format for use within transaction sequences. This enables PNG images to be converted to a format that can be embedded and displayed in Crystal Reports.,The new captured object (Convert PNG to JPG) can be put in a transaction in Design Studio or Form Studio.
WisysDB Connection Cleanup
When opening a SQL Wisys database connection, there is a SQL Connection that is not explicitly closed. This opens the possibility for exhausting the connection pool if NET Garbage Collection is not triggered in a timely manner. Connection cleanup and additional logging enabled in AgilityAPI
Missing Issue and Receipt Accounts buttons in WMS Inventory Transactions
The Issue Accounts and Receipt Accounts buttons under AE → File → Options → WMS → Inventory Transactions were not visible because they were rendering outside the bounds of the user control frame. Updated the button positioning so they render correctly and remain visible within the form layout.
Bug in the "Create table WSMRPCTL.sql" file from Product Updater
The bug prevents the table from being created if it does not already exist. Users cannot create the ,WSMRPCTL, table as intended. The script should drop the existing table if it exists and then create the table if it does not already exist.
Agility Shipping International Commodity Country of Origin Update
Previously, Agility Shipping defaulted the Commodity Country of Origin to the Ship From country.,With this update, at the time of shipment, the Country of Origin is now retrieved from the ERP Item Master and applied accordingly.,If a Country of Origin is not set up in the item master, it will default to US
Export to Excel returns an error when conditional formatting is present on numeric columns with a single condition value
When a conditional format rule on a numeric column uses only one value (e.g., Value1 > -99999 without a Value2), the DevExpress layout serialization stores Value2 as an empty string instead of NULL. This causes the export engine to throw "Input string was not in a correct format" when attempting to convert the empty string to a number. The fix sanitizes format rule values before export, converting empty strings to NULL for unused values and ensuring all numeric column types (Decimal, Integer, Double, etc.) are handled correctly.