Thursday, July 2, 2026
11 changes · master
Resolved issues and error corrections
When a business card is scanned into CRM, the city information is now captured correctly. This makes newly created contact records more complete and reduces the need for manual edits.
Original PR description
Previously, when user scans any business card, every information was fetched except for the city name. After this commit the city field will be properly fetched. task-6332914 Forward-Port-Of: odoo/enterprise#121766
This update corrects how several country-specific fields are placed around the tax ID section on partner forms. It ensures the layout changes introduced earlier continue to work properly, so related fields display in the right position and the form remains consistent across localization modules.
Original PR description
In the multi ID [1], we completely revamped the UI around the `vat` field. It's now mostly made of: - the VAT field inlined with a "+" button adding additional_identifiers - the additional identifiers that comes below with input-text-like display. The feature should stay in one block, therefore we added an "identifiers" div wrapping all these fields/buttons/labels. This way other fields can easily xpath before or after the whole block. We also have a vat_div identifiers that is meant for feature needed to be inlined with the vat and the "+". This PR and its Community counterart fix some xpath that were still incorrect after [1] and [2] in following modules: l10n_br, l10n_my_ubl_pint, l10n_ca, l10n_ph, l10n_in, l10n_rs_edi, l10n_mx_edi_stock [1]: https://github.com/odoo/odoo/pull/262274 [2]: https://github.com/odoo/odoo/pull/271906 task-6352123 Forward-Port-Of: odoo/enterprise#122524
Testing a receipt print on an Obox point-of-sale printer now produces a sample ticket instead of doing nothing. This makes it easier to verify that the printer is correctly set up before using it in daily operations.
Original PR description
See: https://github.com/odoo/obox/pull/200 Before this commit, attempting to perform a test print for an Obox POS printer would do nothing. After this commit, a test receipt will be printed for the Obox printer just like for ePOS printers. task-6330857 Forward-Port-Of: odoo/enterprise#122033
When a new file is uploaded in Documents, it now appears with its available actions visible right away. This removes the need to deselect and reselect the file just to access those actions, making the workflow smoother and faster.
Original PR description
Bug === When uploading a new file in documents, it's selected, but the actions are not visible (we need to unselect - select the record to see the actions). Task-5408471 Forward-Port-Of: odoo/enterprise#122396 Forward-Port-Of: odoo/enterprise#114770
The product UNSPSC list now includes code 10171500, which covers organic fertilizers and plant nutrients. This fixes a missing option so users can correctly classify products when working in Product > Accounting.
Original PR description
The code 10171500 - Organic fertilizers and plant nutrients wasn't appearing. In the file that has the unspsc product codes this one was set to False. Steps to reproduce: - Activate module product_unspsc. - Go to product > accounting. - Verify that this code is not listed. Ticket [link](https://www.odoo.com/odoo/project.task/4461974) opw-4461974 Forward-Port-Of: odoo/enterprise#121914
This change removes an unnecessary event handling qualifier in the online bank sync portal. It makes the code easier to maintain and reduces confusion for future updates, without changing the user experience.
Original PR description
The `.withTarget` qualifier for interactions events is widely misunderstood: it is not necessary in most cases. It is only required when the event handler is processed through an asynchronous callback (such as interactions' `debounced` or `locked`): in such a case, when the line `ev.currentTarget` is evaluated, the property has been lost and is not available anymore due to the async nature of the call. In all other cases, developers should prefer calling `ev.currentTarget` directly.
This update fixes a mislabeled description in the Swiss payroll monthly snapshot. It now correctly refers to monthly history instead of yearly history, which improves clarity for users and administrators.
Original PR description
The L10nCHEmployeeMonthlySnapshot model incorrectly stated "Swiss Employee yearly history" as a description. Fix the _description attribute to "Swiss Employee monthly history". Task: 6340659
This pull request addresses UI issues within the HR holiday Gantt chart, enhancing the visual clarity and usability for users. The changes focus on resolving display problems and improving the overall presentation of holiday information within the chart. This ensures a smoother and more accurate representation of employee holiday schedules.
Original PR description
TODO task-6328566
This update fixes an issue where the 'Signature Requested' button on company contacts didn't accurately reflect sign requests from related contacts. The fix ensures that all sign requests, including those from child contacts, are included in the button's count, providing a more complete and accurate view of sign requests.
Original PR description
Version - 19.4 Steps to reproduce: - Open the Contacts app - Open a company contact and create a sign request via activity - Open one of its related contacts and create a sign request similarly Issue: When a company has related contacts with sign requests, the smart button on the parent company only reflected its own sign requests. Sign requests belonging to child contacts were completely ignored, resulting in an incorrect count and missing records when clicking the button. Fix: Updated both the count computation and the click action to include child contacts under the company. Following the same approach used by other smart buttons like invoices and sales orders Task id - 6326680
This update resolves a problem where clicking actions on HR payroll warning dashboards was failing due to lost context information. The fix ensures that the original action context is preserved and correctly applied, guaranteeing that actions work as expected. This improves the reliability of the HR payroll dashboard.
Original PR description
When clicking the action button on an hr_payroll.warning dashboard card, the window action's predefined XML context was completely overwritten by the dynamic `additional_context` dictionary. Fix the context loss by reading the action's existing context, processing it via literal_eval if it is serialized as a string, and safely merging `additional_context` on top of it using dictionary unpacking. This ensures core action tags successfully flow to the target view wizard. Task: 6341611
This update resolves a crash issue within Odoo's web_studio tool when translating reports. The fix involves setting up a database with a language other than English (US) and installing other language packs. This allows users to successfully translate reports through the studio interface without encountering errors.
Original PR description
Init a db with a language different from en_US install other languages, except en_US Try to translate via studio a report's XML This gives a crash, because the baseLang is not installed After this commit, there is no crash. opw-6239938 Forward-Port-Of: odoo/enterprise#122447 Forward-Port-Of: odoo/enterprise#122026