Monday, April 14, 2025
5 changes · master
Resolved issues and error corrections
Corrects an internal naming mismatch used by the in-store pickup feature. This helps ensure store stock and pickup availability information can be shown consistently to shoppers.
Original PR description
In dfe368915d802d69f29f879ea7890bfea9d9220e the data name was changed from 'in_store_stock' to 'in_store_stock_data' that was not correctly applied in all occurrences.
This update removes timezone details from receipt search dates to prevent unnecessary system warnings. It helps keep automated checks stable and avoids noise in stock-related operations without changing user workflows.
Original PR description
Since #191549 the date category domain used to search Receipts uses datetimes with timezone informations leading to a warning. See also #203047 The nightly click_all test is failing because of that warning. runbot error 161877
This update adjusts the code formatting rules so Odoo add-on imports are placed consistently with the project's guidelines. It helps reduce unnecessary formatting changes and keeps developer workflows more predictable without affecting end users.
Original PR description
Currently, ruff wants us to sort ```python from odoo import fields from odoo.tests import tagged from odoo.addons.sale.tests.common import SaleCommon ``` as ```python from odoo import fields from odoo.addons.sale.tests.common import SaleCommon from odoo.tests import tagged ``` By adding `odoo.addons` as `known-local-folder`, we get it to sort as specified in our guidelines: https://www.odoo.com/documentation/18.0/contributing/development/coding_guidelines.html#imports
This change fixes a display problem in saved filter views by using the correct user avatar tag component depending on which apps are installed. It helps prevent interface errors and keeps the user selection display working consistently.
Original PR description
This commit addresses a widget issue by replacing mail's many2many_avatar_user with web's many2many_tags_avatar in ir_filters_views. Additionally, a xpath is added in mail to revert the substitution after the mail module is installed. Runbot-error-162965
This fixes an issue where placeholder text could appear blank in partner autocomplete fields. Users will now see the intended guidance text in those fields, improving form clarity with no workflow changes.
Original PR description
With this commit https://github.com/odoo/odoo/commit/752d159aa7b79344ff7b513ec9838a902f08ce9d we have built-in placeholder_field option for most fields, so the `placeholder` getter was removed from the char field. However, a reference to it remained in the partner_autocomplete widget, which led to empty placeholders being displayed on fields. This commit replaces it with placeholder in props.