Thursday, August 29, 2024
4 changes · 17.0
Resolved issues and error corrections
The channel member list now visibly highlights people when users move the mouse over them, making the chat interface clearer and easier to navigate. The fix also keeps status indicators and dark theme colors consistent.
Original PR description
Mouse hovering on channel member list item had no background color change. This happens because `bg-view` had more specificity than the SCSS rule. This commit fixes the issue by replacing `bg-view` by `bg-inherit`, which makes background unchanged (matches global channel member list background) but inherit is necessary for proper IM status background in all cases. `bg-inherit` also has less specificity because it hasn't the `!important` like `bg-view`. In dark theme, color is adjusted because `bg-view` and `gray-200` are the same. Before (hover on Marc Demo) <img width="405" alt="Screenshot 2024-08-29 at 15 23 54" src="https://github.com/user-attachments/assets/6ae8815e-9c0c-41d2-b369-9d9c78b920b1"> After <img width="402" alt="Screenshot 2024-08-29 at 15 18 49" src="https://github.com/user-attachments/assets/2a0f04e6-4dd6-4c63-aa0e-882f7b54d8b7">
This update corrects how certain columns are hidden in analytic accounting screens so they behave properly in Odoo 17. It helps keep the user interface consistent and avoids display issues caused by an older hiding method.
Original PR description
* When fwd https://github.com/odoo/odoo/pull/156349 , we forgot to adapt with change in >=17.0 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
The Brazil localization app information was corrected to remove an outdated reference to a field that no longer exists. The description now also points users to the newer Brazilian EDI module, helping them find the right electronic invoicing capability.
Original PR description
The tax_discount field was removed in 512574861691. We take the opportunity to also mention our new EDI module. task-4145576
This update fixes a test reliability issue in the manufacturing subcontracting accounting module. The change ensures test data is processed in a consistent order every time, preventing intermittent test failures that could occur when data was retrieved in different sequences.
Original PR description
This commit make sure the values are get in the same order every time to avoid falsy error runbot 76085 Forward-Port-Of: odoo/enterprise#68963