Daily updates from Odoo
Wednesday, June 4, 2025
4 changes · master
Enhancements to existing features
This update makes shared editor functionality easier to reuse across the website and backend by removing duplicate technical code and adjusting editor asset dependencies. It helps frontend features load the right editor tools more consistently, including point-of-sale appointment pages.
Original PR description
There are multiple duplicates of the `uuid` function, presumably because it is sometimes needed in frontend and was defined in `/web/views`. Update the usage of the function to import it from `/web/core` Adapt `pos_appointment` manifest after the `html_editor.assets_editor` was updated to be importable with `assets_frontend` task-4801746
This change updates internal tests for WhatsApp-related discussion channel behavior to stay aligned with recent platform changes. It helps maintain reliability and reduce the risk of regressions without changing day-to-day user workflows.
Original PR description
PR community: https://github.com/odoo/odoo/pull/212671 task-4829587
Sections and notes are now hidden from the journal items tab, making accounting entries easier to review. This reduces clutter for users working with invoices, reports, and localization-specific accounting views without changing the underlying accounting data.
Original PR description
Hide sections and notes in journal items tab. task-4517560
Document activities now make it easier to assign an owner with a quick assignment dropdown, helping users complete ownership tasks faster. Folder locking has been removed because improved access rights now cover that need, and unlock confirmation messages now display correctly when another user locked the document.
Original PR description
**Specifications:** -To enhance owner assignment, the activity view shows a 'quick assign' button with a dropdown of available owners to streamline user workflow. -Remove the lock feature for folders, as the improved rights management now covers the use case. -When attempting to unlock a document locked by another user, the confirmation dialog message is not displayed correctly. **Technical**-After PR https://github.com/odoo/enterprise/pull/83203, in the RelationalModel the value of a many2one is now represented using an object instead of an array. While converting the use in the documents module, some occurrences have been missed resulting in strange front-end behavior. Fixing that by making sure all the many2one values are correctly accessed using an object key. **Task**-4637016