Tuesday, November 28, 2023
5 changes · 17.0
Resolved issues and error corrections
This fix prevents an error when users disable a discussion subscription. The system now keeps the needed display name available, so the action completes smoothly even after the related discussion record is removed.
Original PR description
Before this PR: When a user removes Discussion subtype, the thread is automatically deleted and also its relational field. Subsequently, a getter method responsible for retrieving the name to generate the title fetches it from the 'partner' _field, which is now undefined, leading to a traceback. Desired behaviour after this PR: Saving the 'name' in the state will enable the getter to retrieve the name even after the record is deleted. task-3590756
This fixes a problem where links created in the website editor could be redirected incorrectly because the system did not properly recognize secure web addresses. Users can now add links starting with http:// or https:// and have them open as intended.
Original PR description
Description of the issue/feature this PR addresses: Fixes href variable used to construct the link. Resolves #104597 Current behavior before PR: href variable was looking to see if the link started with http:// or https://:// before redirecting to http:// Desired behavior after PR is merged: href variable will correctly verify if the link begins with http:// or https:// and redirect the request accordingly. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The Spanish localization now marks the DUA negative adjustment tax line so it is excluded from Libros exports. This prevents an incorrect -100% line from appearing in tax reporting exports and helps keep Spanish tax submissions accurate.
Original PR description
add l10n_es_type 'ignore' on Subtract Base (DUA) -100% tax so that it can be ignored when creating Libros export enterprise-PR: https://github.com/odoo/enterprise/pull/51366 task-id: 3604971
This update fixes the Twitter social media posting interface by hiding character limit messages after a post is sent and adding proper spacing between icons and text in the posts section. These improvements make the interface cleaner and more polished for users managing their social media accounts.
Original PR description
**Before this PR:** -Message character limits are visible after posting a message on Twitter. -There is no space between globe icon and text in the posts by accounts section. **After this PR:** -Message character limits will be hidden after posting a message on Twitter. -Space will be added between text and globe icon in the posts by accounts section. **Task**-3459739
This update fixes a timing issue in the website rental testing process where rental start and end dates could differ when tests run near midnight. The fix ensures both dates are set to the same day, allowing the test to run reliably at any time. This resolves a recurring build failure that was affecting the rental sales feature.
Original PR description
Before this commit, default dates were used for renting. Launching this test just before midnight, start date and end dates are different, although the remaining of the test relies on the fact that hours are defined for the same day. This commit makes sure the renting start date is the same as the end date. Fixes build error 28629