Daily updates from Odoo
Thursday, August 18, 2022
8 changes
Resolved issues and error corrections
Updates an internal Web Studio test so it selects the expected group after mock data changes. This helps keep automated test results reliable and reduces false failures during development.
Original PR description
The test of view editor manager selects a group from the dropdown list, the result is changed cause a new record is inserted into the `res.groups` mock server, which is leading to a different result and should be fixed. relate PR: https://github.com/odoo/odoo/pull/98378 task-2957108
This update corrects a broken configuration used to display document tags. It helps ensure tags continue to appear and behave correctly in the Documents app after related system changes.
Original PR description
https://github.com/odoo/odoo/pull/96654
Several Odoo Enterprise screens were adjusted to use the current Bootstrap 5 styling rules instead of older Bootstrap 4 classes. This helps keep the user interface consistent and prevents display issues across Documents, HR Contracts, Projects, Spreadsheets, Studio promotion, and Events.
Original PR description
*: documents,hr_contract,project_enterprise,spreadsheet_edition, website_event_track_gantt Some commit have added old Bootstrap 4 classes after the merge of Bootstrap 5. Note that it's not possible anymore as the merge bot is now able to detect it.
Users can once again upload documents directly from the document views linked to projects or tasks. This fixes a disabled upload button, reducing friction for teams managing project files in Odoo.
Original PR description
When accessing the documents kanban view specific to a project or a task, the 'Upload' button is disabled. It should be possible to upload documents from that view. This commit restores this feature by correctly marking the button as enabled. Task-2956992
The Sign request modal has been updated to match the look and behavior of other Odoo modal windows. This creates a more consistent experience for users preparing and sending signature requests.
Original PR description
Update SCSS of the modal to be in accordance with the other modal task-id 2901834
This fix ensures that when a serialized product is repaired and extra parts are added, the related stock reservations and repair records are created at the right step. This helps avoid missing or incorrect part tracking during repairs, improving inventory accuracy and repair reliability.
Original PR description
The original issue is described in details in this PR https://github.com/odoo/enterprise/commit/5c83cef2de0dc22f4efc0d9d6fc903988ea111ba Due to the extension of the Repair module in this PR https://github.com/odoo/odoo/pull/97651 The creation of stock_move/stock_move_line of the parts is done in action_repair_confirm now So the fix mentioned in the first PR needs to be extended to this PR as well
This fix ensures parts are properly created and reserved when confirming repairs for products tracked by serial number. It helps repair orders flow correctly after recent repair process changes, reducing failed or incomplete repair operations.
Original PR description
The original issue is described in detail in this PR https://github.com/odoo/enterprise/commit/5c83cef2de0dc22f4efc0d9d6fc903988ea111ba Due to the extension of the Repair module in this PR https://github.com/odoo/odoo/pull/97651 The creation of stock_move/stock_move_line of the parts is done in action_repair_confirm now So the fix mentioned in the first PR needs to be extended to this PR as well
This fix ensures that when a serial-numbered product is repaired through the reserve-and-repair flow, the required replacement parts are properly created and included. This prevents missing parts during repair processing, helping service teams complete repairs accurately.
Original PR description
The original issue is described in detail in this commit https://github.com/odoo/enterprise/commit/5c83cef2de0dc22f4efc0d9d6fc903988ea111ba Due to the extension of the Repair module in this PR (Reserve and Repair) https://github.com/odoo/odoo/pull/97651 The creation of stock_move/stock_move_line of the parts is done in action_repair_confirm now So the fix mentioned in [this commit](https://github.com/odoo/enterprise/commit/5c83cef2de0dc22f4efc0d9d6fc903988ea111ba) needs to be extended to this PR as well