Monday, July 15, 2024
4 changes · saas-17.2
Resolved issues and error corrections
The generate serials/lots dialog in Manufacturing now receives the correct quantity value when used from the shop floor. This prevents users from seeing an undefined Quantity Received value and avoids errors when creating lot numbers for tracked components.
Original PR description
Issue: ============================ There is an 'undefined' value for the 'Quantity Received' field in the generate lot number dialog. When attempting to generate a lot number for a component from…
Issue: ============================ There is an 'undefined' value for the 'Quantity Received' field in the generate lot number dialog. When attempting to generate a lot number for a component from the shop floor, the 'Quantity Received' field displays as 'undefined', leading to an error. Steps to Reproduce: ============================ 1. Install the 'mrp_workorder' module. 2. Create a Bill of Materials (BoM) in the Manufacturing module with manual consumption components tracked by lot. 3. Create a Manufacturing Order (MO) for the product. 4. Open the 'detailed operation' wizard for a component with lot tracking in the shop floor module. 5. Click on 'Generate Serials/Lots'. 6. Verify that the Quantity Received field displays the 'undefined' value. Resolution: ============================ Currently, the "quantity received" field displays 'undefined', causing an error when generating a lot number for a component. This issue occurred due to not getting a quantity field in the shop floor module. Added the "quantity" field to the relevant view to ensure that the "quantity received" field gets an actual quantity field value, preventing the error. Expected Result: ============================= This fix resolves the error and allows for efficient lot number generation of products in the shop floor module.
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