Monday, June 7, 2021
7 changes · master
Enhancements to existing features
Recruiters can now send an applicant refusal email directly from the refusal wizard, with the email template suggested based on the selected refusal reason. This helps teams communicate rejection decisions more consistently and reduces manual follow-up work.
Original PR description
{Recruitment : Send refusal email by Reason{
# PURPOSE
Currently, when using the refuse action, there is not automatic template sent.
# SPECIFICATIONS
Configuration Menu > Refuses Reasons
New email Template
Applicant Form > Refuse Action
LINKS
PR: #57722
Task-id: 2313402Language management options in My Profile are now shown only to users with the proper permissions. The language list is easier to use, with clearer actions to activate, disable, or update languages.
Original PR description
Currently, in My Profile all the users have access to language settings even when the user does not have the rights to activate/deactivate languages. Also, the language setting list is not user friendly which needs to be imporved. The purpose of this commit is to hide "More Languages" button in My Profile, for users that does not have the rights. And the language settings list is improved by adding seperate buttons to "activate", "disable" and "update" a language. TaskId: 2466771 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Recruitment stages can now be explicitly marked as counting toward hired candidates, instead of relying on whether a stage is folded. This gives businesses clearer control over hiring reports and helps ensure recruitment metrics match their actual process.
Original PR description
Previously the number of hired people in the reporting was based on if they were in a folded stage or not. Adding this boolean allows the user to decide which stage should be used for the computation of the number of hired people. Task-2462536
Inventory reports now show product categories, making stock information easier to review and filter. Creating a transfer now starts with a default quantity of 1, reducing manual entry, and the purchase walkthrough has been simplified by removing an unnecessary step.
Original PR description
1. Add product category in inventory report. 2. Default quantity when creating a transfer switched to 1 instead of 0. 3. Remove the reorganize lines step in purchase tour (there is only 1 line). -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Referral app settings now let users choose which recruitment stages should appear, instead of excluding stages they do not want. This makes the setup more direct and reduces the chance of showing unintended hiring stages in employee referrals.
Original PR description
This commit changes the way the user will configure which recruitment stages appear in the referral app. Instead of selecting those he does not wish to use, he will have to select those he wants to use. Task-2462536
Resolved issues and error corrections
This fixes an issue where manufacturing backorders created from the simplified view could have incorrect component quantities after extra materials were consumed. The change keeps follow-up manufacturing orders accurate, helping avoid inventory discrepancies and production planning errors.
Original PR description
The problem arises when a user creates a backorder for a MO after registering over-consumption of some components through the simplified view. The quantities of the components of the new backordered MO are then wrong. Components that were over consumed in the first MO will have smaller quantities in the new MO, the difference being the amount over consumed. This problem does not appear in the case of the Tablet View where a proper recalculation of quantities is done. This commit fixes the problem reusing the code of the Tablet View to calculate the quantities. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
When a product template image or similar shared field is updated, related product variants that depend on that template are now refreshed as well. This helps prevent outdated product images from appearing in customer-facing areas such as e-commerce pages.
Original PR description
Before this commit, products relying on values of template fields (i.e. image) were not considered updated when their fallback template field was updated. After this commit, upon update of a template field, all products that would fallback on that template for that field are "touched". This avoids side-effects such as displaying an outdated template image in the e-commerce for a given product. task-2477438 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