Thursday, November 21, 2024
4 changes · saas-17.4
Resolved issues and error corrections
The blogs page now correctly shows the newest blog post when the layout is set to show the blog name/latest post without full-width mode. This prevents important new content from being hidden from visitors using that display option.
Original PR description
Prior to [1], when the "Name / Latest post" option was active and "Full-width" was disabled, the blogs page displayed the first blog post as a cover. However, [1] replaced this dynamic cover with a static one titled "Our latest posts," inadvertently omitting the first blog post from the page. Steps to reproduce the issue: - Navigate to the "Blog" menu. - Enable "Edit" mode. - In the "Customize" panel, disable the "Full-width" option. - The latest blog post no longer appears in the list. This commit resolves the issue by ensuring the first blog post is displayed correctly. [1]: https://github.com/odoo/odoo/commit/05ef95d3f13ac42713bb8d8a3002f149345cc08b opw-4289735
The VoIP data reset process has been adjusted to match the current way provider settings are stored. This helps ensure test or demo environments are cleaned correctly without relying on an outdated setting.
Original PR description
Since odoo/enterprise@4f162e7e1ea, the `voip.mode` ICP has been replaced by `voip.provider`'s mode. This commit update the neutralization script accordingly.
This fixes a timing issue in an automated Documents app test that could pick the wrong document before the selected workspace finished loading. The change helps keep quality checks stable and reduces false test failures during releases.
Original PR description
In some specific builds where there are not many records, the test selects the wrong document before the chosen workspace is loaded. See odoo/enterprise#71638 See runbot error 69805
Customers using the portal can now edit their information without hitting an error when UPS delivery support is installed. The change ensures the correct customer details are passed between website account forms, improving reliability for affected storefronts.
Original PR description
Version: - saas-17.4 Steps to reproduce: - Install module l10n_ar_website_sale - go to portal - click on edit information Issue: - it is giving traceback when clicking on edit information Cause: - value of 'partner_sudo' is not available when calling 'partner_info' template from 'portal_my_details_fields' template Solution: - change partner to partner_sudo while calling 'portal_my_details_fields' template to ensure consistency in value of partner in 'partner_info' template. task-4169074