Tuesday, November 22, 2022
4 changes · master
Enhancements to existing features
The documentation now includes guidance for enabling autocomplete when using the Odoo command line. This helps developers and administrators work faster and reduce typing mistakes, with no direct impact on business workflows.
Original PR description
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
Saved payment methods created while a payment provider is in test mode now show a “test token” badge, regardless of which provider created them. This reduces confusion for users by clearly marking test payment details and avoiding reliance on the Demo provider name.
Original PR description
"Demo token" badge is only displayed for tokens created under Demo provider. This is misleadind and should be connected with provider state not it's name. It should be shown on every token created under "test mode". task-2908903 Upgrade PR: https://github.com/odoo/upgrade/pull/4023
This change removes an unused database index on attachment checksums. For large databases, this can reduce storage usage and maintenance overhead without affecting normal search behavior.
Original PR description
Description of the issue/feature this PR addresses: On database with 5 million attachaments, the index of checksum is 250 Mo, but this field is never used to search. @rco-odoo --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The contract history view has been simplified by removing code that supported creating employees from a screen where that option no longer exists. This reduces unnecessary maintenance work without changing the experience for users.
Original PR description
In the hr_contract_history list view, some owl code was set to allow employee creation from that view. Since the create button has been removed, that code was unused.