Sunday, March 30, 2025
6 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
Users setting up pricelist rules now see clearer guidance about whether the original price will appear on sales orders and the website. This helps sales and eCommerce teams understand discount display behavior after the older discount policy option was removed.
Original PR description
**Description of the issue/feature this PR addresses:** - Clarification of price display behavior in pricelist rules. **Current behavior before PR:** - Since the discount policy has been removed from pricelists, users may find it difficult to determine when a discount is applied and when it is not. **Desired behavior after PR is merged:** - When selecting the price computation method in pricelist rules, users will see a clarification indicating whether the original price will be displayed on the sale order line and website. - When discounts are enabled from settings, add alert boxes for user information based on the selected price type. affected version - master task - [4502296](https://www.odoo.com/odoo/project.task/4502296) --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Users can now mention a role in conversations to notify a whole group at once. This makes it easier to reach the right people quickly and reduces the need to tag individuals one by one.
Original PR description
In this task, we are introducing the concept of roles, making it possible to ping a group of users at once. task-4045282 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
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