Sunday, March 30, 2025
4 changes · master
Enhancements to existing features
Calendar event previews now use the same local time format as regular calendar entries. This removes confusion when selecting afternoon time slots and keeps the calendar display consistent for users.
Original PR description
Steps: - Install 'calendar' - Open calendar - Select week - Calendar lines headers are in 24h format - Select a timerange after 12pm - Highlighted mirror event are in 12 hours format Before this commit, regulars events (with existing records) have 24h time format, but not highlighted mirror events Now both are consistent and use the same formatting task-4575307
This update improves documentation around Odoo's internal field and domain behavior, making it easier for developers to understand and use correctly. Better documentation can reduce implementation mistakes and speed up future customization work, with no expected direct impact on end users.
Original PR description
--- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Online bank synchronization now stores imported transaction details in a structured format instead of as formatted text. This improves data consistency behind the scenes and removes those details from the list view to keep the reconciliation workflow cleaner.
Original PR description
This commit changes the transaction_details field of account.bank.statement.line.transient model from HTML to JSON. It's also removed from the list view. Related fixes: https://github.com/odoo/odoofin/commit/401745222095a7ac6d9f9d52a9c2d1b3d4619678 https://github.com/odoo/enterprise/commit/ed7eee1872b734166c060e34b770003929d8ffce task-4596181
Rental product suggestions still identify rental items during selection, but sales order lines and printed quotations no longer include the extra “Rental” label. Rental period times are also simplified by removing seconds, making customer-facing documents clearer and more professional.
Original PR description
**Description of the feature this PR addresses:** - Excludes displaying `(Rental)` in name/description. - Removing seconds from the rental period description **Behaviour before PR:** - In rental app, while adding rental products `(Rental)` tag is appended in product suggestion(autocomplete) - This `(Rental)` tag stays in order lines as well as in SO prints. - Time include seconds in rental period in description of order lines. **Desired Behaviour after PR is merged:** - `(Rental)` can be only seen in autocomplete for rental products in rental app. - order lines and SO prints don't include the `(Rental)` tag now. - Seconds are removed from the rental period description. Task-4547144