Friday, July 26, 2024
2 changes · saas-17.1
Resolved issues and error corrections
Users now see the correct message when trying to view a profile that has been marked private. This avoids incorrectly showing a karma-related warning and makes access restrictions clearer for forum users.
Original PR description
[FIX] website_profile: reorder conditions accessing users profile Before we were checking for karma requirenment even if for unpublished websites now we don't. [Reproduce] - Install website_forum - Set karma to 100 for a website - Open a profile page on a forum, unselect "Public Profile" - BUG: Opening a profile page as another user render msg: "Not have enough karma to view other users's profile" Instead of a message about profile beeing private opw-3972165
Financial reports now show a loading indicator while data is being refreshed. This gives users clearer feedback that their request is being processed, reducing confusion when reports take a moment to update.
Original PR description
Since odoo/odoo@c853c3b rpc requests doesn't block anymore the UI, so in commit odoo/enterprise@70c7a747a19 the manual rpc bus notifications were removed, thus preventing the loading indicator to show up. As we're not blocking the UI anymore, this commit simply change the "silent" rpc call to normal rpc calls so that the loading indicator shows up again.