Wednesday, September 13, 2023
7 changes · master
Enhancements to existing features
This update adds a previously created test to confirm that partner suggestions in the mail app appear in the expected order. It helps protect the user experience from future regressions without changing current functionality.
Original PR description
This PR import the test created in https://github.com/odoo/odoo/pull/135122
The sales product catalog now uses clearer colors for the quantity selector and add button. This makes selected quantities easier to see during demonstrations or use on projectors, reducing confusion when creating sales orders.
Original PR description
Improve the color of quantity selector and add button. - Currently, if we look at the selected quantity, it is not that visible on the projector. - The color of the quantity selector and button change to primary and secondary respectively. Task: 3489423
The main Odoo web interface now loads one fewer asset bundle at startup, reducing an extra request and helping the app open more efficiently. This is an internal packaging improvement that keeps test loading separate and also standardizes the naming of dark mode assets.
Original PR description
This commit reworks a little bit the backend assets to remove a bundle and thus save a call at webclient startup. The bundle "assets_backend_prod_only" existed only to allow to add files in production, but not in the tests (typically, the file that spawns the webclient). This commit introduces a new bundle "web.assets_web" that contains "assets_backend" and the few files that we only want in production. In the /web page, we now load "assets_web" instead of "assets_backend" and "assets_backend_prod_only". In the /web/tests page, we keep loading "assets_backend", which is now directly included into "web.tests_assets". For the sake of consistency, this commit also renames the dark mode bundle "dark_mode_assets_backend" into "assets_web_dark". Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Notifications in Odoo can now show action buttons using a link-style appearance. This gives teams more flexibility to present less prominent actions in a cleaner, less intrusive way while keeping the notification behavior unchanged.
Original PR description
Adds the possibility to display the buttons of the notifications as links. See https://github.com/odoo/enterprise/pull/42992 taskId:3186645 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The Website Blogs module has been renamed to Blog across related website documentation and settings. This makes the module name simpler and more consistent for users, with no expected change to functionality.
The Knowledge command palette now includes descriptions for all available commands. This helps users understand each action more quickly and choose the right option with greater confidence.
Original PR description
This commit ensures that all commands in the command palette of knowledge have a description. Task-3235223
This update simplifies how Odoo Enterprise loads backend and dark mode interface assets. It aligns Enterprise modules with the main Odoo platform changes, reducing maintenance complexity with minimal expected impact for users.
Original PR description
This commit is the enterprise counterpart of odoo/odoo#135204, which removes the bundle "web.assets_backend_prod_only" and renames the "dark_mode_assets_backend" bundle into "assets_web_dark".