Daily updates from Odoo
Friday, July 26, 2024
3 changes
2 changes
Enhancements to existing features
Planning emails are now clearer and easier to read, helping employees better understand their shifts. The system also prompts users to add missing employee work email addresses when creating shifts, so schedules are more likely to reach the right people.
Original PR description
This commit will change mail templates in planning to make emails more understandable, specific and breathable. Since these emails are not worth taking so much space in the database, they will now be automatically deleted. When sending a shift to employees, a wizard pops up to let the user add a work email to employees that don't have one so they can receive their shift. However, there was no option to do that when creating a slot for a single employee ; this has now been changed. A wizard now pops up whenever creating a slot allowing you to set a work email for it, if the selected employee has no work email. task-3251693
This update makes Sendcloud connection failures easier to understand by showing more specific error messages. It also adds the batch "Print Labels" option directly in the barcode app actions menu, helping warehouse teams complete label printing faster.
Original PR description
*: delivery_sendcloud, stock_barcode_picking_batch This PR adds miscallaneous changes to sendcloud connector and stock picking batch barcode: #### Sendcloud: The PR replaces the old error message that was shown in case of a thrown exception when sending a request to Sendcloud with a more specific message. #### Barcode: The "Print Labels" action of stock picking batch is added to the actions menu in the barcode app. Community PR: odoo/odoo#170350 Task-4004274
1 change
Enhancements to existing features
eBay changed how they format product URLs in their system, which was breaking the ability to match products to the correct variants in Odoo. This update improves the matching logic to handle multiple URL formats and adds a backup method to fetch the correct variant information directly from eBay when needed. This ensures orders from eBay continue to be processed correctly despite these external changes.
Original PR description
eBay recently changed the URL they send in the viewitemURL. We found 3 different ways they send it, but there might be more. We shouldn't have relied on this URL to match products in the beginning, but we can't refactor this flow in stable, instead, we try a different way to match the url, and fallback on another eBay call to get the expected variant. opw-3934127 Forward-Port-Of: odoo/enterprise#66924