Monday, April 28, 2025
7 changes · saas-18.3
Enhancements to existing features
Portal and website pages now use the newer Odoo icon style for chevron indicators. This keeps customer-facing navigation visuals consistent across the frontend without changing functionality.
Original PR description
* website_crm_partner_assign, website_customer This PR updates the chevron icons with the OI version to remain consistent with the frontend design. task-4720641 Requires: -…
* website_crm_partner_assign, website_customer This PR updates the chevron icons with the OI version to remain consistent with the frontend design. task-4720641 Requires: - https://github.com/odoo/enterprise/pull/83293 | Before | After | |--------|--------| |  |  | |  |  | |  |  | --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Live chat reports now display rating results as percentages in the graph view. This makes it easier for managers to quickly understand customer satisfaction trends without manually interpreting raw rating values.
Original PR description
This commit adds the rating percentage widget to the rating measure in the live chat reporting graph view. task-4753025
The live chat session reporting page now shows an empty folder icon when there is no data, replacing the previous smiling face icon. This small visual update makes the empty-state message more consistent with similar reporting views and easier to understand.
Original PR description
Purpose of this PR: Replaced `o_view_nocontent_smiling_face` with `o_view_nocontent_empty_folder` for better consistency in the session reporting view. Before: <img src="https://github.com/user-attachments/assets/f389ebae-3ae4-4c7d-b8ba-9ac657d0f64c" width="60%"> After: <img src="https://github.com/user-attachments/assets/be07992f-e897-4d2e-96e3-378d37684e00" width="60%"> task-4753044 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The live chat reporting screen now shows updated help text when there is no reporting data available. This aligns the empty report experience with the latest design guidance and makes the page clearer for users.
Original PR description
**purpose of PR:** adjusted the help message to align with the latest design when no reporting data is available for agent action. task-4753041 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The live chat area now shows improved guidance when there is no previous session history to display. This makes the empty state easier for users to understand and helps set clearer expectations.
Original PR description
This PR improves the help text shown when there is no session history available. Task-4753053 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The helpdesk website now uses the newer Odoo icon style for chevron indicators. This keeps the customer-facing helpdesk pages visually consistent with the broader frontend design, with no expected change to functionality.
Original PR description
This PR updates the chevron icons with the OI version to remain consistent with the frontend design. task-4720641 Requires: - https://github.com/odoo/odoo/pull/205691 | Before | After | |--------|--------| |  |  |
When someone refuses to sign a document, the system now avoids an unnecessary follow-up request that could no longer return useful information. This reduces avoidable network activity and server work in refusal cases while keeping the normal signing process unchanged.
Original PR description
Avoids unnecessary `/sign/sign_request_items` call after refusal by: - Adding `isRefused` flag to skip RPC when token is invalidated - Preserves normal flow for successful signatures **Benefits:** Reduces network traffic + server load in refusal scenarios. task-4642104