Monday, April 17, 2023
2 changes · master
Resolved issues and error corrections
Point of Sale customer search now checks email addresses as well as names when limited customer loading is enabled. This helps cashiers find the right customer more reliably, matching the search behavior used in the backend contacts area.
Original PR description
Before this commit: if the limited partner load option was enabled, when a user tried to load a user by searching, it would only search based on the name. In several cases, it's necessary to search based on the email like when you are searching in the contact in the backend. The solution is to add other fields to the domain of search. opw-2952814 X-original-commit: dba0eca41f2922a9054c5c926b24d7f570382bd7 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Odoo Studio now works correctly when users edit forms inside nested related lists. This prevents a crash and lets users navigate breadcrumbs, add fields, and make edits in deeply nested form views as expected.
Original PR description
In studio, navigate through a first x2many, then through a second. The breadcrumb should now display: Form > SubView Form > SubView Form Before this commit, there was a crash as the subview's xpath was not correctly computed. After this commit, it works as expected, one can add a field, or edit in general, the nested x2many.