Tuesday, March 2, 2021
3 changes · master
Enhancements to existing features
The “Select Quantity” customization setting now applies consistently across the online store. When disabled, customers can no longer change quantities on the product page, in the cart, or in the product configuration pop-up, reducing confusion and ensuring store settings behave as expected.
Original PR description
Purpose of this commit is, To make the customize option "Select Quantity" work. So far, it's only disabled from the product page. If you disabled it, it's still active on the cart and on the product config modal. After this commit, If the user decide to disable the "Select Quantity", disable it everywhere (cart, product config modal, product itself) task- 2008472
Duplicating a mailing list now keeps each contact’s opt-out status, helping prevent people who unsubscribed from being re-added to copied campaigns. The update also makes unsubscribe dates and copied list names more consistent, reducing accidental mailing mistakes.
Original PR description
…t duplication before this commit, on duplication, the contacts who opted-out from the original list have the opt-out field set to False on the duplicated list. after this commit,on duplication, for a contact who has opted-out from the original list,the opt-out field will be set to True on the duplicated list, because, when a recepient opt-out from a mailing list, chances are high that he does not want to be included in the new duplicated list. Task-2431383 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Financial reports now handle column widths and shortened text more reliably, making long labels easier to read without manual tooltip setup. The update also improves dropdown alignment, column spacing, and removes duplicate or redundant display elements for a cleaner reporting experience.
Original PR description
Better management of the width of columns with ellispis in the reports. To do that, we: * add a div with computed width but 0 height to allow the browser estimate the best width for each column, evn though it can't deduce it from the displayed span/div with an ellipsis * remove the tooltips, and show the full div instead. This removes the need for the dev to manage that, and the risk of errors * Display the carret of dropdown menus correctly on the right of the title again * Correctly use the colspan parameter again Also related misc improvements: * Remove the entry's name from the description when it is displayed in another column * Remove duplicated link to css sheets * Correct unfoldable title row level/margin because of overlap with the carret * Display the margins of columns with gray background Task [2389670](https://www.odoo.com/web#id=2389670&action=333&active_id=967&model=project.task&view_type=form&cids=1&menu_id=4720)