Friday, July 26, 2019
7 changes · master
Resolved issues and error corrections
This fix adds the employee color setting where it was missing so employee labels and kanban cards can display correctly. It helps keep HR views visually consistent and prevents display issues in tag-style fields.
Original PR description
The color field is necessary to be able to display some fields (many2many_tags) and used in the kanban views -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Customers now see a confirmation message whenever a promo code is successfully applied, even if they did not open the promo code section first. This makes checkout feedback clearer and reduces confusion about whether a discount was accepted.
Original PR description
**Task:** https://www.odoo.com/web#id=2027008&action=327&model=project.task&view_type=form&menu_id=4720 **Pad:** https://pad.odoo.com/p/r.7da68f71d74d6799f4c128fe332075f7 **Description of the issue/feature this PR addresses:** -Previously, success message for promocode was visible only when user clicked on "I have a promocode". even when it was successfully applied. -After this commit, message will always appear once a promocode has been successfully applied. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fix prevents the search panel from crashing when a category’s parent information is missing. Users get a more stable filtering experience in views that use category trees.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: category.values[value.parentId] can be undefiend and this leads to a client error Desired behavior after PR is merged: An additional check protects against a client error -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fix ensures animated GIFs attached to project task cards continue to animate instead of being treated like static images. It improves the visual display of shared media in the Project kanban view without changing user workflows.
Original PR description
Description of the issue/feature this PR addresses: - Task - https://www.odoo.com/web?#id=1986422&action=327&model=project.task&view_type=form&menu_id=4720 - Pad - https://pad.odoo.com/p/r.96d744296d09b7f0f1a3f826a88bc806 Current behavior before PR: - GIFs were not played. Desired behavior after PR is merged: - GIFs will be played. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fix makes certain appraisal-related employee fields available in the employee profile where they are needed. It avoids unintended access restrictions caused by inherited field settings, improving usability for HR workflows without changing business processes.
Original PR description
In order to be able to use some fields in the employee profile view, we need to remove the groups on the fields, the problem being that related fields always copy the groups of the fields they depend on. This is why those related fields are converted into compute fields
Users can now open details from Actual Demand values in the Mass Production Schedule without encountering an error. This prevents interruptions when planners review demand and replenishment information.
Original PR description
How to reproduce: - Manufacturing > Planning > Mass Production Schedule; - In control panel, clicks on Rows then checks Actual Demand; - Then clicks on a actual demand value in the grid > Traceback. Task #2039731
A test for document tags was adjusted so it no longer fails when the test suite is run multiple times. This improves development reliability and helps prevent false alarms in quality checks, without changing the user-facing product.
Original PR description
This commit prevents the inspector tag input test from failing during subsequent runs of the tests due to a jQuery race condition.