Wednesday, September 6, 2023
8 changes · master
Enhancements to existing features
This update streamlines how message link previews are handled behind the scenes. It reduces unnecessary data complexity, helping keep mail message processing easier to maintain without changing the user experience.
Original PR description
Before this PR the link preview formatter was creating an unnecessary complex object in the message key. This PR simplify the payload by using a message_id key and remove the unnecessary object.
Skipped order lines in Point of Sale now use the previous darker purple color instead of the lighter gray introduced during earlier styling changes. This restores visual consistency and makes skipped lines appear as users expected before the refactoring.
Original PR description
Previously before the bootstrap refactoring the skip line color was `#7F82AC` which is a dark purple. After the refactoring the color was changed to `text-secondary` color which is a light gray. This commit changes the color to `#7F82AC` again to keep the same behavior as before the refactoring. Before:  After: 
This update adds a stock-related table for manufacturing demo data, making inventory information easier to represent in manufacturing workflows. It is a minor improvement intended to improve how manufacturing and stock data are presented or tested.
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
Calendar day and week views now open with the early morning hours positioned at the top, starting around 6am. This helps users begin scheduling from a more practical part of the day without manually scrolling each time.
Original PR description
This commit ensures that when the user opens a calendar view in day or week mode the view will be scrolled so that 6am is at the top of the view. task-3460517
The web module no longer includes an old compatibility workaround for Bootstrap behavior on deprecated Apple devices. This simplifies maintenance with minimal expected impact, as the affected devices are no longer supported.
Original PR description
Introduced in https://github.com/odoo/odoo/commit/f242721eb0cb73dc791380beff3ca150c100b2af, this Bootstrap's Collapse fix was targetting very old Apple devices. task-3439226 Design-themes PR: https://github.com/odoo/design-themes/pull/694 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The TaxCloud configuration option is now hidden unless the related TaxCloud module is installed. This keeps accounting settings cleaner and prevents users from seeing an option they cannot use.
Original PR description
Taxcloud setting was visible by default, but should only be visible when the account_taxcloud module is installed. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Helpdesk ticket actions have been renamed to match the menu labels users see: “My Tickets” and “All Tickets.” This makes navigation more consistent and reduces confusion when users open ticket views.
Original PR description
In this commit we have improved wording in helpdesk ticket action.
- Tickets -> My Tickets
- Tickets -> All Tickets
task-3388985Users can now open a record from the map view's left panel by clicking anywhere on its row, not just on the record name. This makes navigation faster and reduces missed clicks when working with map results.
Original PR description
This commit extends the clickable area of the left panel records to the entire line instead of only the name of the record. task-3436992