Daily updates from Odoo
Friday, September 6, 2024
4 changes · master
Resolved issues and error corrections
When users add a new field to a report in Studio without a default value, it now appears immediately instead of being invisible due to having no size. This makes report editing clearer and prevents confusion when inserting fields through the powerbox.
Original PR description
With the powerbox, insert a new field in the report, without setting a default value. Before this commit, the new field is not visible, it has no size. After this commit, we make it have a size by using the oe-expression-readable attribute. task-4166586
This fix removes an empty placeholder paragraph that could appear in subscription automation rule forms when its related message was not needed. The form now uses space more cleanly, making the interface slightly tidier for users managing subscriptions.
Original PR description
Since [1] the subscriptions automations rules were extending the view_base_automation_form view by - among other changes - displaying a paragraph of text, but only under a certain condition. **Before this commit** This paragraph is present as an empty paragraph when the condition is not met, taking up a bit of space in the form view. **After this commit** The empty paragraph is no more added to the DOM. [1]: https://github.com/odoo/enterprise/commit/bbfcf24728a90b97999ce359a9d5dbf0916fa8c2
Spreadsheet pivots are now inserted in the familiar static format by default instead of using dynamic formulas. This makes pivot results easier for everyday users to understand and use without needing advanced spreadsheet knowledge.
Original PR description
Dynamic pivot formulas technically are array formulas, which only are used by advanced excel users. The common user will more likely be lost with the concept whereas the static pivots "just work" out of the box. This revision removes the default insertion of pivot formula from their "splilled formula" form to their previous static form. task-4137727
This fix restores reliable appointment slot display when users choose a date from the calendar. It also prevents an error when changing appointment types on sites using only the Appointment app, keeping the booking flow smooth for customers.
Original PR description
This PR fixes following 2 issues introduced in 9e38975d3f1e9dc87a3061c06ce9df7cf562949c 1. Slots were sometimes not displayed when we select day from the calendar picker. 2. When only appointment is installed and we go to /appointment and then change the appointment type, it throws error. (original task 3928221) task-4163398