Monday, July 15, 2024
4 changes
3 changes
Resolved issues and error corrections
Fixes a visual glitch in the test status spinner when HOOT tests run on small or mobile screens. This makes the testing interface more stable and readable for teams checking software quality on different device sizes.
Original PR description
This commit fixes a glitch in the animated spinner when running HOOT tests on small/mobile screen. Note: adding flex grow/shrink variants for consistency's sake. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
When a recruitment applicant is created with both a name and an email address, the related contact will now be named after the applicant instead of the email address. This keeps contact records clearer and avoids confusing duplicate-looking entries based on email addresses.
Original PR description
STEP TO REPRODUCE:
==================
1- Go on recruitment application
2- Click on applications/All applications
3- Click on new
4- Write this in the form view :
A- "manager" in subject/application
B- "Milly" in Applicant's name
C- "thefunnyguys@example.com" in Email
5- Save it
6- Go in contact application
7- search thefunnyguys
Current Behaviour:
===================
You will find a partner with this name and this email.
Expected Behaviour:
===================
The name of this partner should be "Milly" not the email adress.
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-prThis fixes the GCC Arabic-English invoice report so it uses the correct current report language setting. It prevents issues caused by an outdated internal reference, helping invoices render reliably with right-to-left text ordering.
Original PR description
Problem: The `l10n_gcc_invoice.arabic_english_invoice` report was recently updated to fix (https://github.com/odoo/odoo/pull/169267) an issue related to RTL ordering. However, this fix uses the `_lang_get_direction` method. While fine on theoriginally targeted version, in 17.2 this method was reworked into a new api `_get_data`. FW ports for 17.2+ had this older method still. Purpose: Swap `_lang_get_direction` with new `_get_data` method in report opw-4045879
1 change
Resolved issues and error corrections
This update fixes visual alignment issues in the sign module where text and icons were inconsistently positioned in both the customer portal and backend interfaces. The fix ensures a polished, professional appearance with consistent alignment across all sign-related screens, improving the overall user experience.
Original PR description
Before this PR: In the sign module, there are inconsistencies with the alignment of texts and icons, in both the portal and backend interfaces. After this PR: This fix addresses alignment issues and ensures consistency between the portal and backend interfaces. Now, texts and icons in the sign appear aligned and consistent across both interfaces.