Friday, January 2, 2026
6 changes · master
Enhancements to existing features
This update enhances the visual appearance of filters without color by adding a black border to checkboxes that don't have a color assigned. The change involves a minor code adjustment and removal of duplicate SCSS files to improve consistency and maintainability.
Original PR description
Filters' checkboxes that don't have a color get a black border instead. To achieve this, in commit https://github.com/odoo/odoo/commit/97fea91a570d2bb8a0d454be9cbe7ea4269f6699 we created a hack which inverts the checkbox' white check icon and border to black. In this commit we adapt the `xpath` to add the `.no_filter` class to the parent element instead of the input. We also remove the duplicate SCSS which was already moved to `calendar_filter_panel.scss`. Community PR: https://github.com/odoo/odoo/pull/144404 task-3575827
This update enhances the Odoo calendar app on mobile devices by ensuring the filter dropdown only appears when filters are actually present. Previously, it was always visible, which created a confusing user experience. This change improves usability and simplifies navigation for mobile users.
Original PR description
To be merged after : https://github.com/odoo/odoo/pull/144208 https://github.com/odoo/odoo/pull/144169 - https://github.com/odoo/enterprise/pull/51755 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update enhances how Odoo automatically updates settings by including a unique user identifier (DBUUID). This ensures settings are correctly associated with the right user account, leading to more accurate and personalized configurations. It's a routine improvement for the IAP system.
Original PR description
https://github.com/odoo/iap-apps/pull/1309/ Forward-Port-Of: odoo/odoo#241723
This update simplifies the process of downloading the IoT Box image and Virtual installer. By adding shortcuts directly within the Enterprise app's configuration tab, users can now easily access these essential files, streamlining their setup and reducing friction.
Original PR description
To ease image and installer downloads, we added shortcuts to both installers on the app in the configuration tab.
This update allows different color themes to be set for the Self-Order and Kiosk UIs within an Odoo company. Previously, all locations used the same color. Now, each POS configuration can have its own primary color, offering greater flexibility and branding options.
Original PR description
Before this commit: =================== - The primary color used in the Kiosk and Self-Order UI was always taken from the company configuration. After this commit: ================== - A new primary color field is added to the POS configuration. - The Self-Order and Kiosk UI now use this color per POS config. Purpose: ======== - Allow different color themes for multiple configs within the same company. Task: 5429015 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update moves a key method responsible for loading product information from the database to the point-of-sale store. This change enhances the performance and efficiency of product loading within the POS system, particularly when searching for items. It's a routine improvement to optimize the user experience.
Original PR description
Following this commit: ==== - `loadProductFromDBDomain` method is been move to pos_store from product_screen task-4890054 Linked PR : https://github.com/odoo/odoo/pull/236506