Friday, November 24, 2023
5 changes · 17.0
Resolved issues and error corrections
This update fixes a failing automated Point of Sale test scenario related to settling non-groupable orders. It improves validation reliability for future changes without changing day-to-day user behavior.
Original PR description
In this commit, we fix the last step of the PosSettleOrderNotGroupable tour which is deterministically failing in runbot. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fixes an issue where event track pages could fail to load if the live track feature was not installed. The templates now keep live-specific styling in the live module, so standard event pages remain reliable for users without that optional feature.
Original PR description
In the recent redesign of the `website_event` module(s) [1] a field was used in the templates of event_track that only exists if event_track_live is installed. The `t-att-class` argument is now overriden in `event_track_live` The `t-att-class` attribute is also lightened by moving most of it to `class` to ease the override. task-3597612 [1] 94c5bc3d152c80fdbb6798d9b4d28bf62740856b --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Plain text email previews no longer display the visible " " text when messages contain non-breaking spaces. This makes email previews cleaner and easier for users to read, without changing email content or workflows.
Original PR description
Stop rendering in plain text versions of emails Description of the issue/feature this PR addresses: Addresses Issue #143188 where is rendering in email previews Current behavior before PR: is rendering in email previews Desired behavior after PR is merged: replaced by textual space character --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update fixes a broken translation helper in the Planning app by replacing a removed function with the supported one. It helps prevent errors related to translated text and keeps the Planning interface working as expected.
Original PR description
In this commit, we fix _lt with _t. Let's more informations on https://github.com/odoo/odoo/pull/124157
A date-sensitive automated test for appointment meeting cancellation was updated so it works consistently regardless of the current date. This helps maintain confidence in appointment features by preventing false test failures in ongoing development.
Original PR description
The test method would only work before 2023-11-23 We fix it using freeze_time, and fix the test so that it actually tests the 'active' state directly.