Daily updates from Odoo
Thursday, June 20, 2024
2 changes
1 change
Resolved issues and error corrections
Closing a live chat window while the chatbot is still processing no longer triggers an error. This makes the chat experience more reliable for users and avoids unnecessary system error reports.
Original PR description
When bot is processing steps and you close the `chatwindow` it throws error as the thread has been deleted so it won't be able to process next steps. This PR fixes the issue by adding necessary checks. Runbot Issue:-[64922](https://runbot.odoo.com/web/#id=64922&view_type=form&model=runbot.build.error&menu_id=405&cids=1) --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
1 change
Resolved issues and error corrections
This fixes an issue where product image previews could fail to display in the barcode inventory workflow after an underlying image component changed. A test was added to help ensure barcode users continue to see images as expected during inventory operations.
Original PR description
[1] did change the `ImageField` template, making the extend of this field in `stock_barcode` (`ImagePreviewField`) erroneous because the xpath in the template doesn't exist anymore. This commit fix this and adds a test to be sure the image field will be displayed as expected. [1] https://github.com/odoo/odoo/pull/167751