Tuesday, December 1, 2020
6 changes · master
Resolved issues and error corrections
This update makes CRM lead conversion behave more consistently by preserving the original order of selected leads. It also adjusts sales test setup so internal automated checks run reliably without being affected by unrelated accounting permissions.
This fixes an issue where users could edit the copyright text in the website footer but their changes were not saved. The update ensures footer copyright customizations persist as expected, reducing confusion and repeated work.
Original PR description
The copyright part of the footer could be edited but not saved. Now it can be saved. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Help text on portal and online shop forms is now shown in a mobile-friendly way instead of relying on hover-only tooltips. The text can also be translated, making these forms clearer for customers in different languages.
Original PR description
This help text is invisible in mobiles, where you can't "hover" to see an input's `title`. Also it was impossible to translate due to the way it was written. Now it's usable and translatable. Uses a small help text as explained in https://getbootstrap.com/docs/4.1/components/forms/#overview @Tecnativa TT17694 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Help text in the portal and online shop is now shown in a mobile-friendly way instead of relying on hover behavior. This also makes the text available for translation, improving usability for customers in different languages and on smaller screens.
Original PR description
This help text is invisible in mobiles, where you can't "hover" to see an input's `title`. Also it was impossible to translate due to the way it was written. Now it's usable and translatable. Uses a small help text as explained in https://getbootstrap.com/docs/4.1/components/forms/#overview @Tecnativa TT17694 this commit closes #51152 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
Manufacturing work orders now calculate required non-tracked components correctly when producing more than originally planned, even if some components were already reserved. This helps avoid incorrect component consumption while keeping lot-tracked reservations tied to their specific lots.
Original PR description
The test from previously added feature allow a higher qty_producing than product_qty (i.e. originally planned) in a WO didn't properly consider non-zero reserved components. This change makes it so non-tracked components are correctly scaled to higher qty_producting amount, and also makes it so test does not expect lot tracked components to auto-scale when specific lot already reserved. Task: 2359317 COM PR: odoo/odoo#60300 Related Upgrade PR: odoo/upgrade#1868
The barcode app now handles unexpected packages and lot or serial numbers during batch picking without crashing or showing outdated information. This helps warehouse staff continue processing batches accurately when scanned items differ from what was originally expected.
Original PR description
These bugs are fixed in `stock_barcode` even if they happen when `stock_barcode_picking_batch` is installed, because the behavior of batch picking is very close to the picking one, but more restrictive. And so, it could create situations where the `stock_barcode_client_action` isn't prepared for.