Thursday, January 18, 2024
13 changes · 17.0
Resolved issues and error corrections
Canceling an edit on a course review no longer hides the related comment section. This keeps existing comments and the comment button visible, avoiding confusion and preserving the review discussion experience.
Original PR description
Steps to Reproduce =================== 1 Open any course 2 Add a review / or edit the review 3 Go to the Reviews tab. (you will find a comment button under each review) 4 Post a comment on any one review. 5 Now from the 3 dots, click on Edit 6 Now, your mind has changed and you don't want to edit anything. Click on the "Cancel" button. The whole comment section disappears, including the existing comment if any, and the 'comment' button on the parent comment. Technical ========= This issue was introduced after the removal of qweb https://github.com/odoo/odoo/commit/6303a3eacdca012649a2ffda627b65c17a7217f1 After this commit ================== The comments section appears properly after canceling the edition. Task-3642425
Dark mode now displays color labels more clearly when planning shifts include material resources. This improves readability and avoids confusing or hard-to-see icons for users working in dark mode.
Original PR description
Step: ---- - install planning module - active the Dark Mode - open planning model - create shift with material resource - check the material resource icon Issue: ----- when dark mode active that time background and color are not proper show Fix: ----- We have fixed according the tag_list. task-3524295  - requires : https://github.com/odoo/enterprise/pull/54510
Fixed an issue in the website editor where switching a header logo from text mode using the Logo option could trigger an error and prevent the template from saving correctly. The editor now handles the text and empty logo states consistently, making header customization more reliable for users.
Original PR description
This commit addresses an issue when the logo is in text mode and we want to click on the `logo` check button under the `Header`/`Elements` options. The bug manifested itself in [this commit] during…
This commit addresses an issue when the logo is in text mode and we want to click on the `logo` check button under the `Header`/`Elements` options. The bug manifested itself in [this commit] during the redesign of the website template headers. The logo button, initially assumed to have two states, is, in fact, comprised of three: None, Text, and Logo. To address this issue, a workaround has been implemented, treating None and Text as a single state. Consequently, if the current state is Text or None, toggling will transition to Logo, and conversely, if it is Logo, the toggle will shift to None. Steps to reproduce: - enter edit mode - click on the header navbar - click on the logo - go to navbar brand options and choose `Text` in the dropdown Logo selector - the website is now saved. click on the button `LOGO` under the `Header`/`Elements` option. - An error occur : the template is not well-formed or wrong. [this commit]:https://github.com/odoo/odoo/commit/e5380a8e40be47cddf53aa24ff01e7c6802bbdb7 task-3624285
The Intrastat report now displays supplementary unit values as plain text instead of formatting them like currency. This avoids confusion because these figures are not monetary amounts and their unit is already implied by the product.
Original PR description
The 'supplementary unit' column in the intrastat report is displayed in currency, while it should not as it does not represent a monetary value. It should not even display the unit of measure as it is implicit with the product. It is therefore simply displayed as a 'string' figure type. task-3595508
This update removes demonstration data from the Belgian CodaBox Bridge module to prevent test data from cluttering testing environments. The demo data was being automatically loaded into Runbot instances, which is no longer desired for maintaining clean test systems.
Original PR description
Turns out we don't want to pollute Runbot instances with these demo data
This fix restores the proper spacing between checkboxes and their labels in the course groups section. The spacing was accidentally lost during a recent technical update to the form interface. This ensures the course group selection interface displays correctly and is easy to use.
Original PR description
This PR retrieves space between checkbox and label in course groups from view which may be lost in a major owl refactor(https://github.com/odoo/odoo/commit/48ef812a635f70571b395f82ffdb2969ce99da9e) in form view. **Task**-3557567 Forward-Port-Of: odoo/odoo#139313
A grammatical error in the mass mailing team snippet has been corrected. The phrase "He lovesto" has been fixed to "He loves to" in both the template and translation files. This ensures professional and accurate messaging in customer communications.
Original PR description
"He lovesto" -> "He loves to" The msg is updated in translation file. Task-3685546 Forward-Port-Of: odoo/odoo#149531
This update fixes a display issue in Email Marketing where long subject line text was overlapping the emoji icon selector. The text will now properly hide behind the emoji icon instead of appearing on top of it, improving the user interface appearance and usability.
Original PR description
Steps to Reproduce : 1. Open Email Marketing 2. Type a long text in the subject line 3. You will notice that the content gets overlapped over the emoji icon Observed behavior: content getting overlap over emoji icon Expected behavior: the content should be hidden by the emoji icon Task-3628324 Forward-Port-Of: odoo/odoo#149895 Forward-Port-Of: odoo/odoo#148257
This update removes unnecessary debug logging statements from the spreadsheet module's pivot functionality. Cleaning up these logs improves code quality and reduces unnecessary browser console output, making the application cleaner and more professional for end users.
Original PR description
remove `console.log` --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
A TODO note in the Razorpay payment form was incorrectly formatted as a text string instead of a code comment. This fix converts it to a proper comment, improving code clarity and maintainability without affecting any user-facing functionality.
Original PR description
Currently, the `TODO: remove in master` is treated as a string, but it is actually a comment. Therefore, I converted it from a string to a comment.
This update fixes a recurring test failure in the website link tools feature where the test was not properly closing popup dialogs before interacting with links. The fix improves test reliability by ensuring proper cleanup steps are followed, making the automated testing more stable and consistent.
Original PR description
This commit resolves an issue in the `link_tools` test, specifically addressing a failure that arises when verifying the synchronization between the link's href and the content of the `<a>` tag. The failure was attributed to the oversight of not clicking outside the popup to close it before interacting with the link. runbot-24929 Forward-Port-Of: odoo/odoo#149854 Forward-Port-Of: odoo/odoo#144234
This fix removes the Extra Content option from Dymo format product labels because the content was being pushed out of the label due to space constraints. The Product team has approved this change, which aligns with the same adjustment already made to other label formats.
Original PR description
### Steps to reproduce issue: 1. Go to Products. 2. Select a Product with an existing Barcode. 3. Click on Print Labels. 4. Select Dymo as format, add Extra Content, Confirm. 5. Extra Content is not shown. ### Explanation: The Extra Content is pushed out of the label by other elements. ### Suggested fix: Remove Extra Content to make up for lack of space. Approved by PO (thd) and already removed on other label formats. opw-3614842 Forward-Port-Of: odoo/odoo#146308
This update adjusts the blog module's performance test to reflect improved query efficiency from a recent optimization. The test expectations have been updated to match the new, lower number of database queries needed, ensuring the test accurately validates the blog's improved performance.
Original PR description
Since [this other commit], the performance test of the blog may use less queries than before. This commit change the test to update the number of expected queries. [this other commit]: https://github.com/odoo/odoo/commit/7466ecd400bd27e4b612a5fcbdd779f34301982a runbot-54860