Monday, October 30, 2023
3 changes · master
Enhancements to existing features
The calendar invitation layout now places the reschedule link below the event description with clearer wording. This makes it easier for recipients to understand the event details first and then find the option to request a new time.
Original PR description
This PR move the reschedule link below the description with the appropriate message. Task-3458669
Odoo's web search components can now filter search options using additional item details, such as whether an option is active. This improves consistency in search and pivot menus and makes it easier for the interface to show only the most relevant choices.
Original PR description
The public method getSearchItems did not allow to filter items on the extra keys added in _enrichItem (e.g. isActive). This is now possible.
TaxCloud settings are no longer shown to all users by default. They now appear only when the relevant U.S. localization or TaxCloud module is installed, reducing confusion for companies that do not use this service.
Original PR description
Before the community PR (https://github.com/odoo/odoo/pull/136039) the setting of tax cloud was displayed for everyone which wasn't something that some clients wanted. Now, the setting only appears when you install l10n_us or account_taxcloud directly. The settings is by default falsy because we have removed the auto install in the manifest of account_taxcloud. To make it work we have to change some xpath too. upgrade: https://github.com/odoo/upgrade/pull/5315 odoo: https://github.com/odoo/odoo/pull/136039 task: 3475032