Daily updates from Odoo
Wednesday, October 16, 2024
7 changes
1 change
Enhancements to existing features
Amazon customer alias emails are now saved directly on the customer's primary contact email. This helps Odoo processes that rely on the standard contact email, such as shipping and customer communication, work more consistently.
Original PR description
This commit set amazon alias directly on customer's main contact email instead create field to store that email on contact. This will ensure flow that are related to contact's email like shipping address and other where email on contact is required. task-3877861
4 changes
Enhancements to existing features
Date and time fields can now show placeholders that adjust dynamically based on the field setup. This helps users better understand what kind of date information to enter, improving clarity in forms without changing business workflows.
Original PR description
See commit
The Point of Sale employee settings have been adjusted so the Advanced Rights option displays more neatly on a single line. The placeholder text was also updated to make the setting clearer for users configuring employee permissions.
Original PR description
In this commit: == - Improve the view of Advance Rights to look in one line. - Change the placeholder for Advance Rights in settings. task-4260676 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The shop floor now again offers the optional "This Station" filter, letting manufacturing teams focus on orders that involve the currently selected work centers. This helps users reduce clutter and find relevant manufacturing orders without manually recreating a difficult dynamic filter.
Original PR description
Starting from 18.0, the default shopfloor filter "This Station" was removed from existence. See Commit 4e6038617586b669c00a23da0ea4355f869ecc94 This filter was initially added to odoo for performance reasons [1] and was removed since the shopfloor performance do not require it anymore to work properly. However, this filters appeard to be usefull for certain user in case for instance they want to filters out all the MO's that do not have an operation which belongs to at least one of the selected workcenter. In addition, this filter is reactive and quite hard to manually create since it requires that the user identifies the ids of its active workcenters. It was therefore decided to add it back to the list of filters that can be selected in the shopfloor in case the user would like to use it. [1] https://github.com/odoo/enterprise/pull/64551 opw-4241699
The deferred end date field now shows a dynamic hint that helps users understand how the deferred period is calculated. This makes it clearer that both the start and end dates are included, reducing confusion when entering accounting deferrals.
Original PR description
We now add a dynamic placeholder to the deferred end date which allows the user to better understand what a deferred period is, and that both the start and end dates are included. task-id: none
2 changes
Enhancements to existing features
The system now alerts users when deferred expense date ranges are abnormal (e.g., spanning an uneven number of months), which could result in incorrect deferral amounts. A warning banner and yellow highlighting help users identify and correct these date entry errors before creating deferrals.
Original PR description
In the deferred computations, we always assume that both the start and end date are inclusive E.g: 1st January -> 31st December is *exactly* 1 year = 12 months However, the user may instead put 1st January -> 1st January of next year which is then 12 months + 1/30 month = 12.03 months which may result in odd amounts when deferrals are created For this reason, we now alert the user if we detect such a case with a warning banner and yellow highlight in the abnormal dates. Other cases were the number of months is not round should not be handled. task-id: none
The Odoo Amazon connector has been enhanced to make it easier for businesses and developers to customize and build on top of the module. Hooks and tweaks have been added to the Amazon account, offer, and order recovery features, allowing for better extensibility without modifying the core module directly.
Original PR description
Add some hooks and tweaks to improve the experience to customize/improve on top of this module. Info: @wt-io-it