Daily updates from Odoo
Thursday, August 7, 2025
3 changes · master
Enhancements to existing features
This update streamlines how users see and move to the next status for account returns, making the workflow clearer. Audit-related returns are now automatically marked complete after validation, reducing manual follow-up.
Original PR description
* Simplify the view logic for displaying the state transition buttons by adding a new computed field for the next_state of current return type. * For Audit category return, automatically set is_completed to True after validation. task-4975340
The Point of Sale due payment flow no longer loads all account move records upfront when opening the interface. This reduces memory use and loading times, making the experience faster and more reliable for users handling settlements.
Original PR description
Before this commit, all account.move records were loaded into the PoS interface, even though they were not used immediately. This caused significant performance issues, increasing memory usage and loading times. opw-4986727 Forward-Port-Of: odoo/enterprise#91515
Odoo Studio’s report editor has been improved so users can edit existing dynamic fields directly in reports. The underlying editor tools were reorganized to make the report editor easier to maintain and test, supporting more reliable future improvements.