Thursday, December 6, 2018
5 changes · master
Resolved issues and error corrections
This fixes a visual issue where card body backgrounds could cover rounded card borders. Users will see cleaner, consistent card styling across the web interface, matching the intended design.
Original PR description
Again (and definitely?) completes https://github.com/odoo/odoo/pull/29253 As the mentioned PR forces a background on card bodies, that background went over the card border corners as those are rounded. This commit fixes that by adding the correct border radius on card bodies, the same way bootstrap does it by default for card headers and card footers.
This fix makes gray background and text styling available consistently across Odoo’s web interface instead of only through the website editor styling. It helps ensure muted text and gray card sections display with the intended colors, improving visual consistency for users.
Original PR description
* web_editor Before this commit, the web_editor app defined gray utilities: bg-* and text-* classes for gray colors (on top of theme colors). Those are now defined for all bootstrap (note that this was already the case as the web_editor file was put in the backend and in the frontend). The difference is that now the gray utilities are defined just after the standard bootstrap. This allows to complete and fix https://github.com/odoo/odoo/pull/29253/files as text-muted in gray card bodies were not using the correct color without this (see code comments for details).
This update fixes a small issue in the Lunch HR app that could cause the “Available at current location” filter to fail during testing or use. It also removes outdated internal compatibility code, helping keep the app aligned with the current platform.
Original PR description
Python 2 helpers were removed in 758382b3a. Also, fix a typo in a search domain. This issue was found during the test_click_everywhere test when clicking on filter " Available at current location ".
This fix prevents line charts from failing when they encounter missing label values, especially when multiple groupings are used or users switch from bar charts to line charts. Business users get a more reliable graph view instead of an error traceback when opening reports.
Original PR description
Description of the issue/feature this PR addresses: Issue-Link: https://www.odoo.com/web#id=1882328&action=333&active_id=1278&model=project.task&view_type=form&menu_id=4720 Pad-ID: https://pad.odoo.com/p/r.d6a3403499a66e5503978336375515ae Before this commit: While the user was opening first-time line chart graph, at that time undefined label values were not being converted into undefined string due to misplacing code. So it was giving traceback error. After this commit: The code has been moved to the proper place. Issue-ID: 1882328 Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The product form now shows subscription options for every product type, not only selected ones. This helps teams configure subscription-related products more consistently and reduces confusion when setting up offerings.
Original PR description
Purpose : make subscription visible for all product types in product form Task-1880039 closes #3069