Saturday, December 20, 2025
2 changes · saas-18.3
Resolved issues and error corrections
This update resolves a bug that prevented administrators from accessing employee details within the Point of Sale (PoS) interface. The fix simply disables a feature that was causing errors, streamlining the user experience and ensuring PoS functionality remains stable. Employee information is intended to be managed from the backend.
Original PR description
Steps to reproduce ------------------ 1. Enable "Log in with Employees" 2. Login with any employee and make an order 3. Switch to the admin, "Mitchell Admin" usually 4. Go to the paid orders (we are still in PoS UI not in the backend), and select the order paid in step 2. 5. Click on "Details", the order form will appear, click on the "Cashier" name A traceback will appear, saying 'Cannot find key "hr_employee_form" in the "views" registry'. The fix ------- We simply disable the employee_id field; it will not try to open the employee form anymore. That is much simpler than adding all the required hr assets to the PoS frontend. Employee details are meant to be seen and navigated from the backend. opw-5252486 Forward-Port-Of: odoo/odoo#240012
This update resolves an issue where the ‘eas’ field was incorrectly focused during Peppol registration. By removing the field’s focusability, the system now correctly pre-selects this field, streamlining the registration process for users and ensuring accurate data input.
Original PR description
During registration on Peppol, the eas field is focused first, which makes no sense as it's supposed to be correctly preselected, and users aren't supposed to touch it So this commit makes it non-focusable Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#240679