Monday, October 6, 2025
5 changes · 17.0
Resolved issues and error corrections
The message shown after fetching bank transactions now displays correctly instead of showing raw formatting code. This makes the banking workflow clearer for users when no matching transactions are available.
Original PR description
Before this commit : - The help message shown when no transactions were fetched by the 'Fetch Transactions' button in the 'Bank' journal contained raw html tags, as markup was not getting applied. - Also, removing a filter (without reloading) and applying another filter that resulted in no matches, the same issue occurred. After this commit: - The help message is now consistently rendered with markup applied. task-4942234
This fix improves how calendar views appear when dark mode is enabled. It helps users read and navigate calendar information more comfortably by correcting visual styling issues.
Original PR description
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 visual issues in dark mode for the manufacturing work order display. It helps ensure production teams can read and use the screen comfortably when dark mode is enabled.
This fixes an internal automated test for bus notifications that could fail unpredictably. The test now checks all received notifications, helping keep validation runs stable without changing user-facing behavior.
Original PR description
This commit fixes the `test_postcommit` that fails in a non deterministic fashion. This test ensures bus notifications created in the post commit hook result in only one batch. However, the listener only consider the first notification of the batch (`conn.notifies.pop()`) and ignore the rest. When the expected notifications come as part of a bigger batch, they can be ignored thus making the test fail. This commit ensures we read every notification received. fixes runbot-233185 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
Delivery slip reports using the DIN 5008 layout now show ordered and delivered quantities in the correct column alignment. This makes printed or downloaded delivery documents easier to read and more professional for warehouse teams and customers.
Original PR description
**Steps to reproduce:** 1.Install Stock and l10n_din5008 modules. 2.Change the document layout to DIN 5008. 3.Create a Delivery/Picking with two stock moves: - First product without `Description for Delivery Orders` - Second product with `Description for Delivery Orders` 4.Download/Print the Delivery Slip. 5.Observe the quantity alignment in the report. **Issue:** - The Ordered and Delivered quantity columns are misaligned in the Delivery Slip report. **Solution:** - Add a CSS class to properly align the quantity columns in the Delivery Slip. --- **After Fix** <img width="735" height="290" alt="image" src="https://github.com/user-attachments/assets/69a941ff-a3a6-4e9a-993f-ad26af714b18" /> **Before Fix** <img width="757" height="274" alt="image" src="https://github.com/user-attachments/assets/7a4d0f78-112b-47ad-9037-da97e0399c8f" /> --- **opw- 4904727** --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr