Daily updates from Odoo
Monday, November 24, 2025
3 changes · 17.0
Enhancements to existing features
This change makes Google Places autocomplete more flexible when searching for customer information. Businesses can now adjust the search type to better find locations or establishments, which should reduce cases where no result is returned for valid queries.
Original PR description
Description of the issue/feature this PR addresses: We use the google search autocomplete for completing our clients informations in the application Contact, but for some reasons almost all the times the autocomplete was not working, it was not able to find an address (the same query worked on google search engine). Current behavior before PR: On trying to search the business of a client by name, most of the time no result found. Desired behavior after PR is merged: I would be able to change the base behaviour of the google search api with a custom module by changing the parameter of the method, by changing the types from "address" to "geocode|establishment". This change will change nothing for thoses who don't need this improvement, because the old comportement was kept as a default parameter. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This change adds an index to the sales order team field, which helps Odoo find matching sales orders more quickly when users filter by sales team. It improves performance on large databases and reduces delays when opening or searching sales orders.
Original PR description
`team_id` might be used in filters to conditionally see related `sale.order` for a specific (or set of) sales teams. If the field isn't indexed, it's a Sequential Scan on `sale_order`, which can be a large table. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update replaces the specific name 'Uruware' with a generic 'UCFE Provider' in the Odoo settings for Uruguayan localization. This ensures customers contact Odoo support for assistance and maintains a consistent, clear configuration. The core functionality remains unchanged.
Original PR description
Before: -In the Settings > Uruguay Localization section, electronic invoicing provider was shown as "Uruware". -This could lead customers to contact Uruware directly instead of Odoo support. After: -Replaced all mentions of `Uruware` with generic name, `UCFE Provider`. -Updated labels and descriptions in both testing and production sections. -The overall configuration and functionality remain unchanged. Impact: -Removes direct provider references from the interface. -Ensures customers contact Odoo support for any assistance. -Keeps the configuration clear and consistent for Uruguayan users. task-5244539