Daily updates from Odoo
Tuesday, December 24, 2024
10 changes
2 changes
Resolved issues and error corrections
The point of sale delivery button now refreshes properly when a new delivery order is received. This helps staff see incoming delivery activity immediately and reduces the risk of missed or delayed order handling.
Original PR description
Before this commit: === - The delivery button on the navbar was not updating properly when receiving a new order. After this commit: === - The delivery button now updates correctly upon receiving a new order. task-4420307
Demo text used for editing report templates was moved into a Studio-only field so it no longer appears on real reports when customer data is missing. This keeps follow-up and SEPA direct debit documents accurate and avoids confusing recipients with placeholder content.
Original PR description
account_* = account_followup, account_sepa_direct_debit During the introduction of the new studio report editor, some reports were edited to add some demo data as default content. See: https://github.com/odoo/enterprise/pull/47501 The assumption was that this would only be displayed inside the report editor and the field value outside. Turns out that if the field value is falsy, the demo content is displayed inside the actual report. This commit has been generated to move only the demo data(default content) inside the new attribute data-oe-demo. This attribute is only used inside studio to display the demo content. > Related PR * https://github.com/odoo/odoo/pull/186391 Task: 4182618
7 changes
Resolved issues and error corrections
This update aligns the Point of Sale rescue session action with the current view naming used in Odoo. It is a minor maintenance fix that helps keep the interface configuration consistent and also adds the contributor legal agreement record.
Original PR description
… session action. Description of the issue/feature this PR addresses: 1. Usage of 'tree' in outstanding rescue session action. 2. Missing CLA for contributions. Current behavior before PR: 1. The outstanding rescue session action uses 'tree' . 2. CLA file is not included. Desired behavior after PR is merged: 1. 'list' replaces 'tree' in the outstanding rescue session action. 2. CLA file is added for future contributions. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Project updates now place manufacturing order costs in the manufacturing order section instead of grouping them under other costs. This makes project cost reporting clearer and helps users better understand where manufacturing-related expenses come from.
Original PR description
This commit's purpose is to remove the cost from the aal of manufacturing order from the 'other cost' section and put it inside the 'manufacturing order' section. This section currently contains only the MO linked to a work order. task - 4184226 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Point of Sale payments now use the intermediary account configured on the payment method instead of the default temporary account. This helps keep accounting entries aligned with the intended payment setup and reduces reconciliation errors.
Original PR description
Before this commit, in the payment move for a normal order, the Default Temporary Account was used while it should use the payment method Intermediary Account. opw-4404557 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Website number chart snippets now resize correctly with their surrounding page layout. This helps pages remain visually consistent when editors adjust column sizes or visitors view content on different screen sizes.
Original PR description
This commit aims to make the graph in `s_numbers_charts` resize simultaneously with it's col parent. It looks like the problem came from the fact that the `s_chart` div was composed of the chart alone. Adding some other type of content makes the chart resize properly. task-4207620 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fix ensures that certain formatted content is handled correctly when the Knowledge app is installed. It prevents display or editing issues caused by incorrectly processed self-closing elements in Knowledge articles.
Original PR description
**Problem**: Similar to the issue addressed in [this commit](https://github.com/odoo/odoo/pull/191311/commits/9b159179a8d0ad85300bf31d3e1d67d7f1324b14), the `knowledge` module patches `HtmlField` and parses its content. Without this fix, self-closing tags are improperly handled when the `knowledge` module is installed. **Solution**: Apply the same fix to convert self-closing tags into open and closed tags to ensure proper handling in the `knowledge` module. opw-4394833
A new automated check covers the full process of creating manufacturing orders linked to projects. This helps ensure project profitability reports place related manufacturing costs in the correct section, reducing the risk of misleading project financials.
Original PR description
This commit's purpose is to add a test for the full flow of the creation of a BOM/MO when they are linked to a project. This is to ensure that the aal generated are generated correctly and that the project profitability is then computing them into the correct section. community pr: https://github.com/odoo/odoo/pull/186607 task - 4184226 affetced version 18.0 - master
Creating a shortcut to a document the user cannot access now produces a clearer, intentional error instead of failing due to an indirect side effect. This improves user understanding and makes the access check more reliable in the Documents app.
Original PR description
Purpose ======= When creating a shortcut to a document we can't access, an error is raised, because of side effect. This commit make the verification explicit. Task-4409538
1 change
Resolved issues and error corrections
This update removes a confusing display option for service products within the product catalog. Previously, users could see 'View Availability,' which wasn't relevant for service products. This change simplifies the user experience and ensures users only see options that apply to their needs.
Original PR description
Steps to reproduce: ------------- - Install Sales, Field Service, and Stock, - Go into Field service and open any task that has products. - Through stat button on the top access the product catalog. - Click on burger menu on any service type product. Issue: - View Availability option should not be shown for service type products Cause: - No condition to make it invisible. Solution: - Added a condition when product type is service to the option invisible. task-3801551 Forward-Port-Of: odoo/enterprise#58817