Saturday, January 25, 2025
3 changes · 18.0
Resolved issues and error corrections
Users can now search product attributes by name in the attributes configuration screen. This restores expected autocomplete behavior, making it easier to find and manage product attributes during purchasing setup.
Original PR description
Steps to reproduce: --- - Go to purchase -> config -> Products -> Attributes - Search Issue: --- There was no search attribute for the autocompletion.The changes in comportment is due to the changes in https://github.com/odoo/odoo/commit/72c5ed9f18bc9e2b1dde7029742d9feb34a4c52f . Fix: --- Added the name field to the search view. opw-4434672 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Users could see an unread inbox indicator for messages linked to records they could not access, but the action to mark those messages as read was unavailable. This fix makes the mark-as-read behavior follow the inbox counter, so the notification indicator and available action stay consistent.
Original PR description
Before this commit, when got a needaction_message from records that you don't have access to, you will see the counter of the inbox but you cannot mark it as read. The reason was that the mark as read action was based on the isEmpty of the thread but if you don't have access to the record, the message will not be fetched and the computation was not correct. The fix is to depend on the inbox counter so that the behavior of the red dot is consistent with the mark as read action.  --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fixes an accounting issue where expenses or revenue deferred to the same month one year later were not spread as expected. Businesses can now rely on annual deferrals being created correctly instead of amounts remaining entirely in the original month.
Original PR description
Before this change if you wanted to defer something to exactly the same month in one year, it just deleted the deferral entries and left the expense/revenue in the month of the move. Same issue for Odoo 17 and so on