Daily updates from Odoo
Navigate
Branch
Tuesday, February 26, 2019
3 changes
New functionality added to Odoo
This update adds Bangla language translation files for Odoo Website and related portal and IBAN content. It helps Bangla-speaking users navigate website features in their preferred language, improving accessibility and localization coverage.
Original PR description
Description of the issue/feature this PR addresses: Odoo Website In Bangla 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
Enhancements to existing features
Automated actions can now be limited to specific fields, so they run only when the relevant business change happens instead of firing repeatedly during related system updates. Record creation actions can also link newly created records through multi-record relationships, reducing orphaned records and improving automation reliability.
Original PR description
When users create an automated action to trigger when a record is updated, they assume each update is 'atomic' in some sense. It is not the case, as one write may trigger many write, some in…
When users create an automated action to trigger when a record is updated, they assume each update is 'atomic' in some sense. It is not the case, as one write may trigger many write, some in recompute. As a result, any update may trigger a dozen actions (or more). We add a field wich allows us to specify which field we want to watch. For instance, you could select the field 'state on quotation', and thus only action would be triggered on confirming the quotation. The link_field_id is a field that allows to link a record of the source model to a new record of the target model, through a many2one. However many target records can be created, so every one of them (except the last) ends up orphan. We allow for one2many and many2many fields to be used, and in these cases we add the newly created record to the list. opw 1910671 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 product vendor minimum quantity field has clearer labeling and help text. This reduces confusion by explaining that the value is for purchasing guidance, not a strict limit on what a vendor can sell.
Original PR description
User might be confused by the help: they think the vendor cannot sell the product below this quantity, which is not what the field depicts. Improve the label and the help of the `min_qty` field to avoid confusion. opw-1943511 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