Saturday, November 15, 2025
2 changes · saas-18.3
Resolved issues and error corrections
This change removes an unnecessary database sequence created for point of sale sessions once the session is closed. It helps keep the database cleaner and avoids unnecessary buildup of database objects over time.
Original PR description
to avoid having too many postgres sequences, this make sure the sequence used by the pos session is cleaned up after being closed. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#235815 Forward-Port-Of: odoo/odoo#235500
The VoIP contact search now skips the phone search field until at least three characters have been entered. This prevents an error from appearing as users type the first digits and makes the search experience smoother.
Original PR description
`phone_mobile_search` doesn't allow you to search for less than 3 characters. This commit excludes `phone_mobile_search` from the search domain when there are less than 3 characters. This avoids triggering an UserError on the first characters typed.