Daily updates from Odoo
Saturday, December 21, 2024
2 changes
Enhancements to existing features
Test coverage in Documents Spreadsheet and Studio was updated to match renamed search operator labels. This keeps automated checks aligned with the latest wording and helps prevent false test failures without changing business workflows.
Original PR description
This commit adapts tests to the rename of basic search operators done in https://github.com/odoo/odoo/pull/190987 task-4416442
Marketing Automation and Planning screens now use the standard record-opening action instead of an outdated edit-specific option. This aligns these modules with the current Odoo behavior, where forms are already editable by default, reducing maintenance without changing expected user workflows.
Original PR description
**Before this commit:** Historically, buttons with type="edit" opened the record in form view in edit mode, and those with type="open" opened them in readonly. Since v16, form views are always in edition, so those two types are redundant. **After this commit:** Support of `type="edit"` has been removed from the codebase. Community: https://github.com/odoo/odoo/pull/190018 Task-4367373