Thursday, October 19, 2023
4 changes
Enhancements to existing features
Helpdesk website pages now use page headings more consistently, reducing the chance of confusing or duplicated main titles. Some text sizing was also standardized with reusable font size classes, helping pages stay visually consistent and easier to maintain.
Original PR description
This commit permit to reduce the risk to have a wrong h1 tag or multiple h1 tags on the same page. This commit replaces some h1 tags by a h2. In addition, this commit removed some font size written in the style attribute and replace them by a font size class. Community PR: https://github.com/odoo/odoo/pull/129791 task-1958098
The Match button is now hidden when users are already viewing journal items to reconcile, where clicking it would only reapply the same filter. This reduces confusion while keeping matching details available when users open an existing matching number.
Original PR description
Problem --------- With the new Manual Reconciliation update the Match button just applies a filter. Once the filter is applied you can hit match again and it will just apply the same filter again and essentially do nothing. Seems confusing for customers. Objective --------- When you are in the context of "Journal Items to Reconcile" -> don't show "Match" in the column Matching. We need to keep the column if you go to a matching number existing. Solution --------- Create a JS function that returns true if both `partner_id` and `account_id` are used as filters at the same time. If true, the matching button is shown. task-3488287
The restaurant preparation display now includes more sample data and places some demo orders in earlier stages. This makes it easier for users to explore and demonstrate how kitchen preparation workflows behave with realistic activity.
Original PR description
The demo data linked to the preparation display (in restaurant) where a bit light. This commit add more data to the demo data and move some to previous stages so that user can play more with them. Community PR: odoo/odoo#138478
Marketing teams can now collapse domain/filter fields in marketing automation and push notification templates. This keeps configuration screens cleaner and easier to navigate when working with complex targeting rules.
Original PR description
In this commit, we add the foldable option to domain fields in marketing apps. Task-3458063