Tuesday, November 18, 2025
7 changes · 18.0
Resolved issues and error corrections
This update makes Odoo’s Mollie payment options match what a new Mollie account actually supports by default. It also removes Sofort from the available linked methods because Mollie is discontinuing that payment option, helping prevent unsupported or unavailable payment choices from showing up to users.
Original PR description
**[FIX] payment_mollie: remove iDEAL from the default payment methods** When a new Mollie account is created, it only accepts card payments out of the box. In Odoo, both the Cards and iDEAL payment methods were activated by default upon enabling the payment provider, while iDEAL required manual activation from Mollie's dashboard. --- **[FIX] payment_mollie: remove Sofort from the linked payment methods** See https://help.mollie.com/hc/en-us/articles/20904206772626-SOFORT-Deprecation-30-September-2024ard. Forward-Port-Of: odoo/odoo#236044
This fix makes the event dot easier to see when an event is displayed with a hatched style. It also ensures the correct styling is applied consistently in views like Planning, even when the Calendar app is not installed.
Original PR description
When pills are hatched (unpublished event) in the calendar view (eg. planning) the `o_event_dot` is barely visible. Additionally the styling to display the dot as outlined on hatched event is wrongly scoped in `/calendar` with the calendar status styling. It should be in the view instead. Otherwise, for the planning module which doesn't depend on calendar, the styling is not applied if calendar is not installed, rendering the filled dot. task-3916768 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#235286
The import screen now shows the same formatting options for CSV files whether the file extension is written as .csv or .CSV. This removes an inconsistency that could confuse users during file imports, while keeping the import itself working as before.
Original PR description
Before this fix, the import side panel displayed the formatting options only when the uploaded file had a lowercase .csv extension. Files with an uppercase .CSV extension could still be imported but did not show the format selection section, leading to inconsistent behavior. This commit updates the condition to perform a case-insensitive comparison on the file extension. Task-5145031 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#235061
This fix restores clickable tab navigation in module information pages when the page contains multiple tabs. It brings the behavior in line with the app store description view, making it easier for users to browse module details.
Original PR description
* Before: if we have a block contain multiple tab in index.html file we can not click on it to switch between tab, unlike the behiviour in odoo apps store description https://github.com/user-attachments/assets/ab7f8213-2112-46e2-bb72-5e01cc1f7883 * After: Make the nav tabs work as it should be https://github.com/user-attachments/assets/12c05abc-84f6-495e-ae5b-b6eca4d81a92 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 Forward-Port-Of: odoo/odoo#186568
This update corrects a testing issue in Point of Sale localization flows so automated checks run reliably again. It helps prevent failed builds and makes sure country-specific POS features continue to be validated properly.
Original PR description
Fix runbot issue runbot-233183
This update removes a step that closed the Point of Sale during an automated localization tour because that action was unstable and often caused failures. The result is a more reliable and faster test process, which helps reduce interruptions during development and validation.
Original PR description
backport of : https://github.com/odoo/odoo/pull/231884 Remove the closing of the PoS in the tour as it is really unstable and fail a lot. It's mostly due to the fact that the PoS take a long time to close with a lost of modules installed. This will also make the tour faster. runbot-233183
This change comments out a small part of the US payroll module to avoid a failing automated test. It helps keep the test suite stable without changing the business behavior seen by users.