Daily updates from Odoo
Navigate
Branch
Wednesday, August 8, 2018
9 changes
New functionality added to Odoo
A new accounting add-on suggests the right account when a user edits an invoice line description and no account has been chosen yet. The feature learns from newly created invoice lines over time, helping reduce manual data entry and improve consistency.
Original PR description
…automatically This module select automatically an account (by guessing) when the user change the description of an invoice line and if no account was already selected. This module uses machine learning and is more accurate each time a new invoice line is created. Task: 1872205 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update adds alerting and follow-up tools for subscription contracts so salespeople can act at the right time. It also improves subscription tracking with stages, health indicators, customer ratings, revenue reporting, and historical snapshots for better business oversight.
Original PR description
Task: https://www.odoo.com/web#id=1834464&action=327&model=project.task&view_type=form&menu_id=4720
Enhancements to existing features
Purchase orders created from reordering rules now keep a more meaningful source document from the related stock flow instead of using an internal route-style label. This makes it easier for users to understand what triggered a purchase order and trace replenishment activity.
Original PR description
Description of the issue/feature this PR addresses: Task: https://www.odoo.com/web?#id=1838639&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 Pad: https://pad.odoo.com/p/r.474f2abaa5733f964e65acd73e7eddbe Current behavior before PR: - On the po generated, the source document is "wh: input -> stock" Desired behavior after PR is merged: - On the po generated, the source document should be the name of the reordering rule -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Automated server actions can now schedule next activities on records, including activity type, notes, due dates, and responsible users. This helps teams automate follow-ups more directly and reduces manual setup by allowing records to be selected by name instead of ID, while also fixing reference-field refresh behavior.
Original PR description
Task: https://www.odoo.com/web#id=1834464&action=327&model=project.task&view_type=form&menu_id=4720
The product form is reorganized to make key product information easier to find and understand across sales, purchasing, inventory, manufacturing, point of sale, expenses, delivery, and eCommerce. Quantity counters now show more useful unit-based totals, and several fields are moved or renamed for clearer daily use.
Original PR description
task: https://www.odoo.com/web?#id=51125&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 pad: https://pad.odoo.com/p/r.2992d8437f31dd4ac666540394eacf7f Description of the issue/feature this PR addresses: Various product form improvements. Current behavior before PR: This pr will add some of the new features to product form and more usability to the user. Desired behavior after PR is merged: Product form view will have some of the new features and improved usability to the user. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Leave request and allocation forms now show durations more clearly by placing hour or day units next to the value and matching the available choices to the selected date options. The Time Off menus and leave type configuration screens were reorganized to make common actions easier to find, while configuration access is limited to HR officers.
Original PR description
Task: https://www.odoo.com/web#id=1871812&action=333&active_id=965&model=project.task&view_type=form&menu_id=4720
The product form has been refined to make key information easier to read and interact with. Visual inconsistencies in labels and stat buttons were corrected, improving day-to-day usability for sales, manufacturing, subscription, and eBay-related product workflows.
Original PR description
task: https://www.odoo.com/web?#id=51125&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 pad: https://pad.odoo.com/p/r.2992d8437f31dd4ac666540394eacf7f Description of the issue/feature this PR addresses: Various product form improvements. Current behavior before PR: This pr will add some of the new features to product form and more usability to the user. Desired behavior after PR is merged: Product form view will have some of the new features and improved usability to the user.
Resolved issues and error corrections
The reconciliation widget now consistently calculates tax base amounts as tax-included when relevant settings are used. This helps accounting users avoid incorrect tax amounts during reconciliation and improves reliability when using reconciliation models with taxes.
Original PR description
The computation of the tax base amount in the reconcialiation widget is now always as is the tax has price_include/include_base_amount checked. see task: https://www.odoo.com/web#id=32717&view_type=form&model=project.task&action=333&active_id=967&menu_id=4720 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
Code cleanup and technical improvements
Payment features that were previously separate are being moved directly into the Sales app because they are needed in almost all sales workflows. This simplifies future improvements to quotations and sales management while reducing the need for a separate sales payment component.
Original PR description
Almost all use cases of sale require sale_payment down the line. There is only one case which does not: using sale_management without website_sale or website_quote. However, since we want to move most of the features of website_quote into sale_management, moving sale_payement first will make the task easier.