Friday, March 27, 2026
2 changes · saas-18.4
Enhancements to existing features
Point of Sale now better supports connections to devices running on the same computer, such as local receipt printers. This helps avoid browser communication blocks and improves reliability without requiring additional IoT hardware.
Original PR description
This commit backports support for loopback TargetAddressSpace from 19.0. Before: LNA requests to localhost (127.0.0.1) used "local" TargetAddressSpace, which caused communication issues (CORS/PNA restrictions). After: Requests to localhost now correctly use "loopback" TargetAddressSpace, allowing proper communication with locally running devices. Impact: Enables stable communication with USB/network printers running on localhost without requiring IoT devices. Reference: https://github.com/odoo/odoo/pull/250972 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#255896 Forward-Port-Of: odoo/odoo#255540
This update enhances the budget report to now automatically include tracking for asset accounts. Previously, budget reports only covered expense accounts. Now, with 'Expenses' or 'Both' budget types, the report will accurately reflect spending and budget performance across all asset types – current, non-current, and fixed assets.
Original PR description
Expand the scope of budget tracking to include asset accounts. Modified the account filtering logic so that when a budget type is set to "Expenses" or "Both", the query includes 'asset_current', 'asset_non_current', and 'asset_fixed' account types. task-5994048 Forward-Port-Of: odoo/enterprise#109496