Thursday, November 23, 2023
4 changes · 17.0
Resolved issues and error corrections
The Windows IoT setup now includes a missing required component so the image can run as expected. This prevents startup failures for Windows-based IoT deployments and improves installation reliability.
Original PR description
Before the windows image couldn't run because the module websocket-client was missing, now it's added in the list of module to install on windows --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Manufacturing orders with manual consumption were incorrectly being forced to provide lot numbers in some cases. This fix restores the intended behavior and updates the warning wording to use “consume” instead of “pick,” making the message clearer for manufacturing users.
Original PR description
During previous fix: odoo/odoo#141797, the `not move.picked` check was moved to earlier in the if statement to avoid unnecessarily looping through the move lines, but the ( was forgotten to be moved with it. Since we don't want to force all manual consumption marked moves to have a lot_id, let's move the (. ENT PR: odoo/enterprise#51171 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The search results dropdown in the helpdesk website was appearing at full width instead of matching the search input width. This fix adjusts the styling so the dropdown properly aligns with the search box, improving the visual appearance and usability of the search feature.
Original PR description
The w-lg-50 was applied on the search box but the dropdown displaying the search results is inside the form tag. This commit applies the classes on the `<form>` tag instead, for the width to be applied on both the input and its dropdown. task-3582583 | Before | After | | -- | -- | | |  |
The date selector buttons in the embedded calendar view within the Knowledge module have been realigned to the left side to match the standard calendar view design. This visual consistency improvement ensures a uniform user experience across different calendar views in the application.
Original PR description
Purpose: -------- Align the date selector buttons of the embedded calendar view to the left to match the design of the "regular" calendar view. Task-3598721