Tuesday, December 24, 2024
7 changes · 18.0
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