Friday, March 21, 2025
10 changes
7 changes
Enhancements to existing features
When abandoned cart emails are enabled, the system will now only contact shoppers whose carts were abandoned after the feature was turned on. This avoids sending unexpected marketing emails for older carts and helps businesses manage customer communication more appropriately.
Original PR description
Before this commit: - Enabling the abandoned cart email feature in settings triggered emails for both old and new abandoned carts by default. After this commit: - Abandoned cart emails will only be sent for carts abandoned after the feature is activated. Affected Version: Master Task: 4512486
Brazilian goods EDI requests now include the unit of measure for each order or invoice line. This makes tax submissions more complete and helps external tax services such as AvaTax receive the product details they need for compliance processing.
Original PR description
Make our goods EDI request a bit more complete by including the UOM per line. task-4117133
Point of Sale now relies on server data as the main source of truth, reducing duplicate record tracking and improving consistency across related POS features. It also avoids sending unchanged records back to the server, which can reduce unnecessary network activity and improve loading performance.
Original PR description
This commit enhances the related model by using the server data as the single source of truth, eliminating the need to maintain a separate list of connected records. This improves loading times and ensures consistency. Records updated from backend call responses now retain the same reference, facilitating development. Additionally, a dirty-check mechanism has been implemented to prevent syncing records to the server unless they have been updated, reducing unnecessary network operations.
The Field Service task search view no longer includes the Archived filter. This simplifies the search options and makes the interface less cluttered for users looking for active field service work.
Original PR description
This commit removes the Archived filter in search view of project.task model in Field Service app as we did in project to reduce the number of filters inside the search view.
The appointment page navigation now better matches the look and structure used on other website pages. This creates a more consistent browsing and search experience for visitors, including using appointment icons in search results.
Original PR description
The goal is to provide visual consistency between sub navigation on website pages. Community PR: https://github.com/odoo/odoo/pull/188504 task-4259418
This update introduces shared tools for handling formatted text in many Enterprise apps, helping screens display rich content more consistently. It mainly improves internal reliability and maintainability for features such as documents, planning, signing, social posts, barcode flows, and website tools, with limited direct change for end users.
Odoo Studio now better handles report editing for models that do not yet have records by disabling tabs that depend on sample data, making the screen easier to understand. It also streamlines how Studio loads model details, improving consistency behind the scenes.
3 changes
Enhancements to existing features
Opening the vendor bills list is now much faster when Odoo checks for possible duplicate bill references. This reduces waiting time for accounting teams, especially on large databases with many bills.
Original PR description
Description: ------------ Following commit 4e7b5e44b292dc41217e4c50048b8bb8408246f5, the list view for bills now shows a colored highlight on the bill's reference if there is a potential duplicate, and the matching on the invoice date was relaxed to include potential bills from the same year. This caused a performance regression, as the index on `invoice_date` could no longer be used since the year is now extracted from it. This patch adds a partial 'btree' index on the `ref` field specifically for bills, as it is the most discriminatory factor when identifying potential duplicates. Benchmark: ---------- On a database with 6M `account_move` records, 230k of which are `'in_invoice'` & `'in_refund'`, `_fetch_duplicate_reference`, triggered when opening the list view of bills, took: | Before | After | Speedup | |--------|-------|---------| | 19.8s | 20ms | 990x | --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Original PR description
**Proof of concept, not yet validated by anyone** Alternative version with separate functions: https://github.com/odoo/enterprise/pull/80163 \* = documents, frontdesk, knowledge, planning, project_enterprise, sale_planning, sign, social, social_twitter, stock_barcode, stock_barcode_mrp, stock_barcode_picking_batch, voip, web_cohort, web_enterprise, web_gantt, web_grid, website_helpdesk_forum, website_studio Enterprise counter-part. https://github.com/odoo/odoo/pull/199394
This update improves Odoo's internal Hoot testing framework and related unit tests, making test results clearer and reducing cases where tests are accidentally skipped or behave inconsistently. These changes are limited to the test ecosystem, helping developers maintain quality without affecting normal business operations.
Original PR description
## Pull Request HOOT (PRHOOT) 29 This pull requests brings various improvements and fixes to Hoot and the Odoo unit test ecosystem. See the different commit messages for more details. Note: these changes are made in stable to avoid having to support multiple versions of the HOOT API. As such, these changes are intended to be strictly limited to unit tests as to not put the rest of the code base at risk. Enterprise: https://github.com/odoo/enterprise/pull/81834 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Product and combo configurator cards now show larger, clearer images and cleaner attribute details. The layout is also adjusted for smaller screens, making product selection easier for customers on mobile devices.
Original PR description
Increase image size from 128 to 256 for combo items in the configurator opw-4630831 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr