Daily updates from Odoo
Friday, January 6, 2017
12 changes · master
New functionality added to Odoo
Users can now export data in XML format from Odoo's web interface. This adds more flexibility for sharing, integrating, or processing exported records in systems that rely on XML.
Original PR description
- Task: https://www.odoo.com/web#id=8803&view_type=form&model=project.task - Pad: https://pad.odoo.com/p/r.GQ9qOYpLqUjA9L7D
This adds a new foundation for creating and attaching electronic invoice files, making it possible to support EDI workflows in accounting. It also introduces Belgian electronic invoicing using the UBL/e-FFF standard, helping businesses meet local invoicing requirements more efficiently.
Original PR description
Description of the issue/feature this PR addresses: -related to task: https://www.odoo.com/web#id=29757&view_type=form&model=project.task&action=333&active_id=248&menu_id=4720 Current behavior before PR: -no mechanism to support EDI Desired behavior after PR is merged: -add base mechanism to generate EDI files -add EDI for Belgium (using UBL, protocol e-fff) -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Adds electronic invoicing capabilities for Mexican companies, including CFDI generation and integration with certified invoice providers. This helps businesses comply with local tax authority requirements and track invoice validation status with PAC and SAT services.
Original PR description
-add solucion factible PAC -add finkok PAC -add sync with PAC status -add sync with SAT status -add cfdi generation related to task: https://www.odoo.com/web#id=29757&view_type=form&model=project.task&action=333&active_id=248&menu_id=4720
Enhancements to existing features
The inventory-related settings pages have been reorganized with a newer layout across purchasing, sales, stock valuation, and landed costs. This makes configuration options easier to find and manage for users working with stock operations.
Original PR description
Description of the issue/feature this PR addresses: task:https://www.odoo.com/web#id=29500&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 Pad:https://pad.odoo.com/p/r.70ba2d63e880c3114e4c6e5daa7e839e -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update reorganizes the Manufacturing settings page to make configuration options easier to find and use. It also adds a safeguard in Maintenance so related email aliases are not accidentally removed when a maintenance category is deleted.
Original PR description
Description of the issue/feature this PR addresses: https://www.odoo.com/web#id=29529&view_type=form&model=project.task&action=327&menu_id= 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
The Expense app settings have been updated to make configuration clearer and easier to manage. This helps administrators adjust expense-related options more efficiently, improving setup and day-to-day administration.
Original PR description
Description of the issue/feature this PR addresses: - Task : https://www.odoo.com/web#id=29535&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 - Pad : https://pad.odoo.com/p/r.1a341a25ad27a390fbdeec2bdbae2dfa 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
Hovering over social sharing icons in the settings dashboard now shows a hand cursor, making it clearer that the icons are clickable. This small usability improvement helps users better understand available actions.
Original PR description
Task : https://www.odoo.com/web#id=29551&view_type=form&model=project.task&action=327&menu_id=4720 Pad : https://pad.odoo.com/p/r.57bde0a4330cf18b39f574d3df1800ab 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
The manufacturing settings area has been updated to make configuration options clearer and easier to manage. This helps businesses set up manufacturing planning and quality-related processes more efficiently.
Original PR description
Task link - https://www.odoo.com/web#id=29529&view_type=form&model=project.task&action=327&menu_id=
The barcode and delivery carrier settings screens have been reorganized to make configuration clearer and easier to use. This helps users find and manage shipping options more efficiently without changing core delivery behavior.
Original PR description
Task:https://www.odoo.com/web#id=29500&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 Pad:https://pad.odoo.com/p/openerp-project.task-R3M4OL9200
The quick search now prioritizes matches in the actual menu item name instead of matching parent menu paths first. This makes searched items easier to find because the most directly relevant results appear higher in the list.
Original PR description
task : https://www.odoo.com/web#id=29793&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 pad : https://pad.odoo.com/p/r.63d6b665f5c6aeacb9caf902778fa24b … related result
Resolved issues and error corrections
This fixes a missing setup link in the Google Drive settings box for Google Spreadsheet integration. Users can once again access the link needed to generate the required Google Drive code from the settings page.
Original PR description
Description of the issue/feature this PR addresses: Task: https://www.odoo.com/web?#id=29501&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 Current behavior before PR:Generate code link is missing in google drive box Desired behavior after PR is merged: link is recovered in box -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fix adjusts how US check printing reports handle page styling so checks print at the intended size and position. It replaces an earlier workaround with a cleaner approach, helping reduce alignment issues caused by printer margins and report layout defaults.
Original PR description
In 9.0 with 5877de5 an issue with style set on the body tag was solved not in the best way. With odoo/odoo@a01b88a _(to be pushed if this PR was ok)_, we now can choose the body class attribute, so this commit is a better solution for the issue. opw-669636 **PR NOTE:** on the us check reports we have: - -15px margin on the body.container tag (which we can not override cleanly) - top/left set on the page by configuration in Odoo to account for unsettable printer margins - content should be fixed to 8.5in (to be able to set elements at good position) 5877de5 was an ugly fix to set the width to 8.5in and cancel the -15px margins on body tag instead of what was done, but this commit should IMO do it more nicely.