Daily updates from Odoo
Saturday, October 18, 2025
6 changes · master
Resolved issues and error corrections
Project calendar views now apply the right filtering when finding tasks that can be planned. This helps ensure users see the appropriate tasks in scheduling workflows and avoids confusion from irrelevant task results.
Original PR description
This commit overrides a hook created in related Community PR to add a condition in the domain to fetch tasks to plan inside for task calendar views. Forward-Port-Of: odoo/enterprise#97343
This fix ensures customers and staff see the correct overweight package message when no Sendcloud shipping method can handle a package. It prevents a system error from appearing and helps users understand that the package weight is the issue.
Original PR description
When a package exceeds the maximum weight supported by all shipping methods, the system raised an error (`KeyError: 'name'`) because the `stock.move` field was removed in commit #211488. This fix replaces the deprecated `stock.move.name` reference with the product name to correctly display the overweight message. opw-5137167 Forward-Port-Of: odoo/enterprise#96744
The automated payroll test for Belgian employee job changes has been updated to follow the current offer process. This keeps the test aligned with the user interface, including contract template selection and internet subscription setup, reducing false test failures.
Original PR description
- changed the step of generate offer to work with the offers smart button instead of old Generate offer button and added `autoExpandMoreButtons` to handle if it's in the popover - added a step to choose contract template to make the values of the offer auto fill from it - added a step to set internet subscription to show the internet invoice upload button afterwards (the upload is hidden if the value is not set) task-id: 5155927 Forward-Port-Of: odoo/enterprise#96730
Fixed an issue in Odoo Sign where dragging a non-PDF file into an empty document view could show the same warning twice. Users now receive one clear warning, reducing confusion while preserving the existing upload behavior.
Original PR description
Issue: - When no documents exist and a user drags/drops a non-PDF file, the warning pop-up appears twice instead of once. - This happened when there were no documents in the view (when actionhelper is visible). Root Cause: - The `useSignViewButtons` hook was used in both the main view (List/Kanban) and the SignActionHelper component. - When a file was dropped, both components received the bus event and attempted to upload the file independently. - This caused duplicate processing and duplicate warning popups. Solution: - Added condition on bus call to distinguish between components. - Modified the bus event handler to skip processing in SignActionHelper components. - This ensures only the main view component handles file uploads from drag-and-drop. Impact: - Users now see the warning pop-up only once when uploading invalid files - Maintains all existing functionality while fixing the duplicate behavior task-5103284 Forward-Port-Of: odoo/enterprise#95512
Users viewing a fully signed document in the portal will no longer see the Thank You dialog every time. This keeps the portal viewing experience cleaner after signing is complete.
Original PR description
Version: - 19.0 Steps for reproduce: - Install the Sign module - Upload a PDF and sign it - Open the fully signed document in the portal view - The Thank You dialog always appears Issue: - The Thank You dialog shows every time in the portal view. Solution: - Hide the dialog in the portal view when document is fully signed. impact: - Users can view signed documents in the portal without the Thank You dialog showing. task-5088937 Forward-Port-Of: odoo/enterprise#94726
Code cleanup and technical improvements
This update removes outdated styling labels from the Documents app views. It keeps the codebase cleaner and more consistent without changing how users work with documents.
Original PR description
This commit is the counter part of the last commit in odoo/odoo#232125 where we remove unused classnames. One of them was only used once, in documents, instead of the regular `o_renderer`.