Tuesday, November 11, 2025
3 changes · 18.0
Enhancements to existing features
The test suite was updated to reflect a new rule that prevents the same bank account number from being assigned to multiple active partners. This keeps enterprise modules aligned with the latest accounting behavior and helps avoid future test failures when validating customer and partner bank details.
Original PR description
Following the community change, we now prevents assigning the same bank account number to multiple active partners. This commit updates the affected enterprise test cases to align with the new behaviour sees community pr- https://github.com/odoo/odoo/pull/234531 task- 5236503
Resolved issues and error corrections
This change prevents long product attribute values from spilling outside their card in the product catalog view. It keeps the layout aligned and improves readability when users search or select products from quotations.
Original PR description
**Steps to reproduce:** 1. Go to Products > Create a new product. 2. Add or create a new attribute and set a long text value. 3. Go to Sales > Open any quotation. 4. In the sale order line, click on…
**Steps to reproduce:** 1. Go to Products > Create a new product. 2. Add or create a new attribute and set a long text value. 3. Go to Sales > Open any quotation. 4. In the sale order line, click on "Catalog" and search for the created product. **Issue:** - The attribute value text overflows outside the product card in the kanban view, causing layout misalignment and making the UI look broken. <img width="509" height="157" alt="image" src="https://github.com/user-attachments/assets/a2af2c6d-9265-451c-9d1e-526df8487841" /> **Cause:** - The inner `<div>` containing the attribute text did not have a width constraint, causing it to exceed the container width when the text length was large. **Solution:** Added the Bootstrap class `w-100` to the <div> element to ensure the content fits within the parent container and wraps properly inside the card. <img width="322" height="166" alt="image" src="https://github.com/user-attachments/assets/5ba82207-7f52-4f9e-b400-e4ab4e79f0a0" /> **opw-5222002**
The upload button in the accounting dashboard is now fixed in place and can’t be accidentally moved. This prevents the interface from shifting unexpectedly and keeps the dashboard easier to use.
Original PR description
Issue: - In the dashboard, the upload button (purchase journal and others) could be dragged. - This caused unintended movement of the upload UI element. Fix: - Added `draggable=false` to the upload button element. - Ensures the button remains fixed and cannot be dragged around. TaskID-5114617 Forward-Port-Of: odoo/odoo#229013