Thursday, September 1, 2016
2 changes · master
New functionality added to Odoo
Authorize.Net payments can now be processed directly through a server-to-server flow, improving the checkout and stored-card experience. The update also fixes a warning shown when saving card details, making payment handling smoother for customers and staff.
Original PR description
Task: https://www.odoo.com/web#id=19521&view_type=form&model=project.task&menu_id=3942&action=327 Pad: https://pad.odoo.com/p/r.3X46VshooscHWWIH
Imports can now optionally add new linked records to many-to-many fields instead of replacing the existing list. This helps businesses update relationships in bulk without accidentally removing current links, while preserving the old behavior unless explicitly enabled.
Original PR description
Description of the issue/feature this PR addresses: Allow to pass a value in the context during import in order to allow the addition of new record in many2many field instead of replacing the current value with the imported value: in other words replace [(6, 0, [ids])] by [(4, id1), (4, id2), ...] Current behavior before PR: Import of many2many values always replace the existing values Desired behavior after PR is merged: if update_many2many is True in the context add the values to the existing list while importing else keep the current behavior ## I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr