Saturday, July 27, 2024
4 changes · 17.0
Resolved issues and error corrections
The product configurator now displays long attribute names more clearly when creating sales orders with products that have many variants. This prevents important product option details from being squeezed into a fixed space, making order entry easier and less error-prone.
Original PR description
Steps to reproduce: -Create a product. -Add an attribute with a long name. -Add a significant number of variants (around 15-20). -Create a SO with this product. Issue: The attribute name is not easily readable. Cause: The use of the w-lg-25 class sets a fixed width. Fix: Use col-lg-3 to ensure the width adjusts according to the grid system.
This update corrects how certain partner fields are hidden or shown in the Spanish Facturae administration centers feature. It prevents issues caused by outdated view settings, helping the screen behave correctly in supported Odoo versions.
Original PR description
before this commit, wrong invisible conditions were added using attrs, which is already removed after this commit, valid invisible conditions are added --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fix prevents the audit trail feature from incorrectly blocking the creation of related outgoing emails when they reuse an existing message record. It allows new information to be added when appropriate while still protecting existing message details from being changed.
Original PR description
Since we are using an existing record as `mail_message_id` in `_notify_thread_by_email`, and we need to allow the creation of new `mail.mail` that will add new values to the `mail.message`, as long as it doesn't modify existing values. We are already writing on `subject` only if it was different than previously, but we are not forbidding to write on it only if there was a previous value set.
This fixes an issue in Discuss where the marker for unread messages could disappear when the last seen message was deleted. Users will continue to see the correct place where new messages begin, helping them follow conversations without confusion.
Original PR description
**Current behavior before PR:** Issue detected where the new message separator disappears for Admin after Demo deletes message B which is last seen message. **Desired behavior after PR is merged:** Adjusted logic to correctly position the new message separator between messages A and C after message B is deleted by Demo. Task-3826567 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr