Monday, February 10, 2025
3 changes · saas-18.1
Resolved issues and error corrections
Operators replying from the website frontend will now continue the existing visitor chat instead of accidentally creating a new conversation. This keeps customer discussions in one thread and avoids confusion for support teams and visitors.
Original PR description
Before this PR, when an operator answered from the frontend, a new channel was created. This occurs because we ensure the thread is created before posting the message. However, this condition relies on the live chat service state which is not initialized in this case (the thread was created by the visitor, not the operator). This PR fixes this condition. 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
This fixes an issue where spreadsheet pivot tables could appear empty after sorting a measure when no column grouping was used. Business users can now rely on sorted pivot reports to keep showing the expected values.
Original PR description
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
Point of Sale users can now find product variants by searching their internal reference or variant name. This helps cashiers select the correct variant faster and avoids missed products during checkout.
Original PR description
Fix issue where product variants could not be searched in POS using their internal reference (default_code) or name (value). Steps to Reproduce: - Create a product with a POS category. - Create variants and assign internal references. - Open POS and try searching for a variant using its internal reference. - No results were found. Fix: - Added `default_code` to `_load_pos_data_fields` to ensure it’s available in POS data. - Updated `exactMatch` function to check variants `default_code` & `name` when searching. - Remove function `addMainProductsToDisplay` and variable `mainProductVariant` as they were previously used when we were searching into `product.product`. Now that we use `product.template` we don't need this anymore. task-id: 4552450 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