Tuesday, January 16, 2024
4 changes · 17.0
Resolved issues and error corrections
This update fixes visual inconsistencies in close and corner arrow icons across several Odoo areas. Users should see better aligned, more consistent icons in everyday interface elements such as chatter, lists, point of sale, and website shop pages.
Original PR description
\*: mail, pos_sale, pos_self_order, website_sale ### 1. `oi-close` adaptation Prior to this commit, `oi-close` icon was based on the default sans-serif font. Depending on this, there could be…
\*: mail, pos_sale, pos_self_order, website_sale ### 1. `oi-close` adaptation Prior to this commit, `oi-close` icon was based on the default sans-serif font. Depending on this, there could be alignment and size inconsistencies with the Odoo UI icon library. This commit adapts `oi-close` to use a custom icon from the UI icon library to make it more robust and maintain consistency with this library. ### 2. Corner UI icons adaptation Prior to this commit, directional icons related to the four corners were misaligned. This commit adapts these four icons so that they are properly aligned. task-3618046 | 1 | Before | After | |--------|--------|--------| | | <img width="123" alt="Capture d’écran 2023-12-01 à 14 51 59" src="https://github.com/odoo/odoo/assets/80679690/f0e4f53f-9b04-4f94-8d03-8bbe34ff9a51"> |  | | |  |  | | 2 | Before | After | |--------|--------|--------| | |  |  | --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The Planning search menu now keeps filter and group-by columns within a reasonable width, even when option names are long. This prevents oversized menus and makes the search controls easier to use.
Original PR description
Steps: - Install planning app. - Open Planning. - Click on search bar menu. Issue: - The groupBy column width is more than expected. Cause: - groupBy and filter menu size changes depending on their groupBys and filters names so giving bigger name to filters and groupBy increase their size and there was no max-width set on then and because of setting name and giving bigger string on field makes that column unexpectly big. Fix: - set max-width on `o_filter_menu` and `o_group_by_menu` to avoid unexpected bigger size for filter and groupby columns. task-3607270
This update fixes a display issue where long project names would overflow and break the layout in the project kanban view. The fix applies proper spacing styling to ensure project names fit correctly within their designated area, improving the visual appearance and usability of the project dashboard.
Original PR description
Steps: ------------------------------------- - Install project. - Go to the project. - Create or edit the project name to be excessively long. - Then go to Kanban view. - The project name would overflow. Issue: -------------------------------------- - Before this PR, in the project's kanban view, if the project's name was excessively long, it would overflow. Cause: -------------------------------------- - When the name is excessively long it would overflow out of the div element. Fix: ------------------------------------- - After this PR the name is now shortened by applying the 'me-5' Bootstrap class. task-3676094
This update corrects how apostrophes are displayed in French language translations for the Stock module. The fix ensures that French text displays properly without formatting issues, improving the user experience for French-speaking customers using the inventory system.
Original PR description
Fix done directly on Github to not have to wait for the weekly sync. Already corrected on Transifex. Forward-Port-Of: odoo/odoo#149411