Friday, May 17, 2024
4 changes · saas-17.1
Resolved issues and error corrections
This fix removes outdated country restrictions from several localization-related module manifests that were missed in an earlier cleanup. It helps keep module availability rules consistent across Odoo, reducing configuration confusion for country-specific features.
Original PR description
This commits cleans up countries from manifest which were missed out by the following commit- https://github.com/odoo/odoo/commit/ac809d3c31cc29a31790aeef53f7a2a7bde4b9c8 task-3935204 Ent PR-https://github.com/odoo/enterprise/pull/62723 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The accounting dashboard now correctly recognizes when a purchase or sales journal already has entries. This prevents users from repeatedly seeing the first-time bill import wizard after they have already uploaded documents, reducing confusion in day-to-day accounting workflows.
Original PR description
To reproduce: - Connect as administrator - Create a new purchase journal "Vendor Bills Test" - Go to the accounting dashboard - Click on 'Upload' button on the "Vendor Bills Test" journal record => The 'Import your first bill' wizard open - Import a bill - Go back to the accounting dashboard - Click again on 'Upload' button on the "Vendor Bills Test" journal record => The 'Import your first bill' still open even if the journal has already some entries. After odoo/odoo@4074c675ee the `entries_count` are not returned anymore as part of kanban data for sale/purchase journals, so the view always show the button to open the 'Import your first bill' wizard. This commit re-add the `entries_count` in returned data (we arbitrarily use of count of 1 if there is some entries has its only used to determine what button is display on the kanban record) --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The Point of Sale now correctly handles products that use instant variant attributes with selectable options. This prevents an error when staff open affected products, improving reliability during sales operations.
Original PR description
Before this commit, an error occurred when opening a product with an attribute set to 'Instantly Variants Creation Mode' and an option attribute. The issue was due to the 'Instantly' attributes not being loaded into the PoS, resulting in a missing attribute_id. opw-3850050 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fixes missed country settings in several localization-related module definitions. It helps ensure these country-specific features are correctly classified and available only where relevant, reducing configuration confusion.
Original PR description
This commits cleans up countries from manifest which were missed out by the following commit- https://github.com/odoo/enterprise/commit/148810637bf9e7a9cc53338f665ec612221a1ba2 task-3935204 Community PR- https://github.com/odoo/odoo/pull/165936