Daily updates from Odoo
Thursday, April 10, 2025
5 changes
Enhancements to existing features
The wording of rating options shown to customers has been updated in Helpdesk and Subscriptions. This makes feedback choices clearer and more consistent when users rate tickets or subscription-related interactions.
Original PR description
This PR aims to update the rating keys visible for the user. task-4614098 https://github.com/odoo/odoo/pull/201811 https://github.com/odoo/upgrade/pull/7447
The Planning app now removes a redundant "Edit" label when editing recurring shifts. This makes the screen clearer and reduces unnecessary wording for users managing schedules.
Original PR description
This commit removes the 'Edit' label from the editting of recurrency shift in planning view. This aims to remove unnecessary information and better clarity. task-id: 4485233
This change updates test coverage for field service stock workflows, helping ensure catalog section behavior continues to work as expected. It is primarily a quality improvement with limited direct impact for business users.
Live chat reporting for website helpdesk has been consolidated into a single report structure. This makes reporting easier to maintain and supports more consistent insights across channels and operators without changing the business workflow.
Original PR description
This commit merges the two existing im_livechat report models `im_livechat.report.channel` and `im_livechat.report.operator` into one model: `im_livechat.report`. The fields from the two models are merged into the new model. task-4619167
This update aligns the field service sales product catalog with recent underlying changes in Odoo. It removes duplicate internal handling and updates a renamed product filter, helping keep the catalog reliable and easier to maintain without changing day-to-day user workflows.
Original PR description
`ProductCatalogKanbanController` component extends `KanbanController` and defines a property `action` to use the action service, but `KanbanController` already has a property `actionService` to use this said service. `FSMProductCatalogKanbanController` extends `ProductCatalogKanbanController` and was using action service too, so this commit replaces `action` with `actionService` to follow change explained above. Community PR: odoo/odoo#196620