Tuesday, July 9, 2024
4 changes · saas-17.1
Resolved issues and error corrections
Point of Sale searches now correctly prioritize exact matches for short product references and barcodes. This prevents staff from seeing fuzzy search results when the exact product code exists, making checkout lookup more reliable.
Original PR description
Before this commit, searching for internal references or barcodes with less than 6 characters would result in a fuzzy search, even when an exact match was available. This behavior was based on the assumption that barcodes and internal references are at least 6 characters long. opw-4029891 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Creating a new customer in Point of Sale now applies default values to the new customer record instead of accidentally changing the existing customer data. This helps avoid incorrect customer information during checkout and in country-specific POS flows for Argentina and Peru.
Original PR description
Before this commit, creating a new partner incorrectly wrote the default values into `this.props.partner`. This commit ensures that default values are correctly set for new partners. Enterprise PR: https://github.com/odoo/enterprise/pull/66310 opw-4042039 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Demo data in the Social Marketing sample content now uses the correct date format. This prevents an error when creating a CRM lead from an Instagram comment, allowing the expected lead wizard to open.
Original PR description
Steps: - Install social_demo, crm - Open social marketing app - Open instagram ost - Create a lead from comment Actual result: - issue due to the demo data with invalid date format - demo date is not ISO8601 compliant Expected result - Lead wizard is opened opw-3975423 opw-4019390 Caused-by: https://github.com/odoo/enterprise/commit/4fb0f854c57c1669eea8a383a55e16dd52894142
Creating a new customer in Point of Sale now applies the intended default details to the new customer record instead of altering an existing customer view. This helps avoid incorrect customer information during checkout in affected localizations.
Original PR description
Before this commit, creating a new partner incorrectly wrote the default values into `this.props.partner`. This commit ensures that default values are correctly set for new partners. Related PR: https://github.com/odoo/odoo/pull/172399 opw-4042039