Daily updates from Odoo
Navigate
Branch
Tuesday, November 7, 2017
5 changes
Enhancements to existing features
This update removes obsolete YAML files and converts partner demo data to the current XML format. It also strengthens recruitment survey tests, helping keep the system easier to maintain with better coverage for existing behavior.
Original PR description
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
This update lets Odoo data records use additional context values when looking up related records during XML data loading. It helps developers and implementers define configuration data more accurately, reducing manual workarounds during module setup or upgrades.
Original PR description
Purpose
=======
Currently on <record> tags, it's impossible to use 'datetime' or 'obj' when using 'search' attribute on a field.
The following example won't work:
<record id="foo" model="model.model">
<field name="bar_id" search="[('company.id', '=', obj([]).env.user.company_id.id)]"/>
</record>
Specification
=============
Use '_get_idref' to extend the accessible variables on the 'safe_eval' computation.
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-prThis pull request updates internal test coverage for recruitment surveys and refreshes how accounting setup data is stored for many country-specific localizations. The change helps keep Odoo's data files and automated checks easier to maintain without changing day-to-day user workflows.
Original PR description
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
Sales order stockout warnings now show how much of the product is available in the company's other warehouses. This helps sales teams respond faster when one warehouse lacks stock, by identifying alternative fulfillment options directly from the warning.
Original PR description
Description of the issue/feature this PR addresses: - In the stockout warning of SO lines there should be display quantity available in all other warehouse Current behavior before PR: - Currently there is no display of quantity available in all other warehouse on stockout warning of SO. Desired behavior after PR is merged: - Now on stockout warning of SO line display quantity available in all other warehouse. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Task : https://www.odoo.com/web#id=35339&view_type=form&model=project.task&action=327&menu_id=4720 Pad : https://pad.odoo.com/p/r.cdce0e21b3ade894092ba16c71c5a469
Resolved issues and error corrections
US bank account forms now handle ABA/Routing numbers correctly. Valid numbers are shown as expected, while invalid entries are rejected cleanly instead of causing a crash.
Original PR description
Edit/create a bank account: - Add a correct ABA number => nothing is displayed - Add an incorrect number (e.g. with letters) => it crashes Combining an `Integer` field with a `char` widget is just a bad idea. Therefore we simply change the type of field and add the appropriate contraint. opw-781069 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