Friday, September 20, 2024
4 changes · master
Enhancements to existing features
The work center overview no longer sends users to the shopfloor screen. All related links now open the work order list instead, giving users a more consistent path to manage production work orders.
Original PR description
This PR removes the links to the shopfloor from the workcenter overview. Instead, all links now redirect to the WO list view. task 4081617
Odoo Studio now supports “starts with” and “ends with” filter operators in the list/tree view editor. This gives users more flexible ways to define matching rules when configuring views, making it easier to tailor records and searches to business needs.
Original PR description
Task ID 4132459
French VAT report submissions now let customers provide up to three bank accounts for reimbursement requests. The underlying VAT closing process was also adjusted so the correct closing entry can be retrieved from report options, improving reliability for the filing workflow.
Original PR description
This commit has 2 objectives: 1. Factorize a bit the vat closing entry code to add a hook function that permits to get the closing entry by using the options report. 2. Modifying the wizard to send the VAT report to the administration. Now, customers can add bank accounts (max 3) where he/she wants to be reimbursed. task-3648048
Resolved issues and error corrections
Fixed an issue where shared public Knowledge articles could appear blank on desktop devices. The page structure was adjusted so article content uses the available screen space correctly, and semantic page sections were restored to support better indexing.
Original PR description
Currently, the article content appears empty on desktop devices because the main container (`.o_knowledge_public_view`) no longer occupies the full vertical space of the page. That issue was…
Currently, the article content appears empty on desktop devices because the main container (`.o_knowledge_public_view`) no longer occupies the full vertical space of the page. That issue was introduced in [this pr](https://github.com/odoo/odoo/pull/98429). To resolve this issue, we will remove the wrapper elements: `div#wrapwrap` and the `main` element from the generated pages. This will simplify the DOM structure and allow the main container to take up all the available vertical space without needing to set the height for all containers. Since the body of the frontend_layout is completely overridden for website_knowledge, the `<header>` and `<main>` tags are reintroduced at appropriate places for a Knowledge article. Steps to reproduce the issue: 1. Open Knowledge 2. Publish an article using the share panel (click on the "Share" button) 3. Copy the share link (`/knowledge/article/<article_id>`) 4. Open an incognito tab and access the link copied at step 3 => The article content is hidden on desktop. TO BE: The article content should be visible. task-4193478