Friday, April 25, 2025
8 changes · 18.0
Resolved issues and error corrections
This fixes the displayed image for the Cofidis payment method. It ensures customers and staff see the correct branding during payment setup or checkout, avoiding confusion from an incorrect logo.
Original PR description
It seems it was an error of https://github.com/odoo/odoo/commit/077f6d449a660ee6961cce8174c9c6caaf5bc23f. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fix makes automated checks for the restaurant point-of-sale wait until the floor plan is fully loaded before continuing. It helps prevent false test failures and supports more stable quality validation without changing day-to-day user workflows.
Original PR description
- SaveLastPreparationChangesTour To fix the error, add the three last steps to ensure floor plan is well rendered before close the browser. runbot-error-id~114344 - FinishResidualOrder Wait the screen floor is completely loaded before clicking on table 5 or the order can sometimes not be well loaded. runbot-error-id~161595 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
The HTML editor now removes unused bold, italic, underline, or strikethrough formatting markers when users move the cursor away. This prevents future text from unexpectedly inheriting formatting, making document editing more predictable.
Original PR description
**Behavior before this PR:** - Create a bold or italic tag using keyboard when selection is collapsed, leave it empty. - Change selection using arrow key. - Put cursor back where format tag was created. Notice that empty element is not removed and text is formatted when writing something. **Behavior after PR is merged:** - This PR makes sure that empty format element gets removed when changing selection. - Tag will not get removed if it's parent block element is empty. task-4240818 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update fixes flaky automated checks for restaurant point-of-sale workflows by waiting for screens and loading activity to finish before continuing. It helps reduce false test failures and improves confidence that restaurant order flows are working as expected.
Original PR description
- SaveLastPreparationChangesTour To fix the error, add a step Chrome.waitRequest() to wait the loader that can appears when time to load is too long. runbot-error-id~114344 - FinishResidualOrder Wait the screen floor is completely loaded before clicking on table 5 or the order can sometimes not be well loaded. runbot-error-id~161595 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
This fixes how tab spacing behaves in the HTML editor when used around text with a background color. Tabs inserted at the start of highlighted text no longer incorrectly inherit the background, while tabs inserted within or after the text still match the surrounding formatting.
Original PR description
**Current behaviour before PR:** When there is a text having background color, inserting a tab at the beginning of text creates a tab with background color. **Desired behaviour after PR is merged:** Now, if there is a text having background color, - Inserting tab at the beginning of text, tab will not have background color. - Inserting tab in the middle of a text, tab will have a background color corresponding to the text. - Inserting tab in the end of text, tab will have a background color corresponding to the text. task-4381135 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Fixed an issue where very long blog or portal pages with comments could show a grey, unusable comment box over the page content. The hidden helper field used to size the real comment box is now kept fully out of sight, improving the visitor experience.
Original PR description
Scenario: create a long blog page article and enable comments Result: there is a grey unusable textarea with o-mail-Composer-fake over the blog content. Issue: in 7710c3331ebd22f8396870bd0731f8c1152d9c41 the fake textarea used to compute the height of the real textarea, had a position of -10000px, which make sense in the backend to make it hidden. But in 18.0 with 368eb78a9cedfce0802b64fd2782e1c018541e40 we use the backend composer on portal, where a page could be higher than 10000px and the fake textarea can be shown. Fix: hide it better (also to the left, and in case there was a 10000x10000 pixels page with comment at the bottom right, make it invisible). opw-4719975
Fixed an issue where product or picking descriptions could be missing from Chilean electronic delivery guides. The document now uses the line’s picking description, making delivery guide details clearer and preserving expected behavior.
Original PR description
When generating a 'Delivery Guide SII DTE 52 (CL)' the picking description was not always displayed. Steps to reproduce: ------------------- * Install l10n_cl_edi_stock * In Sales app, make a new quotation * Add a product and confirm * Click on the Delivery smart button * Click on the gear icon > Print > Delivery Guide SII DTE 52 (CL) > Observation: Why the fix: ------------ We now use the picking description of the line, which inherits from the product's picking description. This improves clarity, makes the line's description more useful, and preserves the original behavior. Enterprise pr: https://github.com/odoo/enterprise/pull/81920 opw-4596901 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The Chilean electronic delivery guide now reliably shows the product or picking line description when printed. This helps users and customers understand delivered items more clearly while preserving the existing document flow.
Original PR description
When generating a 'Delivery Guide SII DTE 52 (CL)' the picking description was not always displayed. Steps to reproduce: ------------------- * Install l10n_cl_edi_stock * In Sales app, make a new quotation * Add a product and confirm * Click on the Delivery smart button * Click on the gear icon > Print > Delivery Guide SII DTE 52 (CL) > Observation: Why the fix: ------------ We now use the picking description of the line, which inherits from the product's picking description. This improves clarity, makes the line's description more useful, and preserves the original behavior. Community pr: https://github.com/odoo/odoo/pull/204764 opw-4596901