Daily updates from Odoo
Navigate
Branch
Monday, March 26, 2018
3 changes
Enhancements to existing features
This update streamlines how payment transactions and customer payments work together across accounting, invoices, and online payment flows. It also improves payment dashboard behavior and fixes issues around acquirer fields and voided transactions, making payment handling more reliable for users.
Original PR description
task: https://www.odoo.com/web#id=35857&view_type=form&model=project.task&action=333&active_id=967&menu_id=4720 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update adjusts behavior in the Sales Subscription area, including portal and subscription handling. It appears to support a requested business process change for subscription customers, with a limited impact focused on that module.
Original PR description
task: https://www.odoo.com/web#id=35857&view_type=form&model=project.task&action=333&active_id=967&menu_id=4720
Resolved issues and error corrections
This fixes a crash that could happen after uninstalling a module used by custom one-to-many or related fields. Odoo now automatically cleans up those dependent custom fields in the background, helping keep the system stable after module removals.
Original PR description
Before this revision: * Install a module, for this example we'll use `project` * Create a o2m field or a related field whose inverse is a field from the `project` module. * Uninstall the `project` module. Result -> BOOM! The registry can't be reloaded because it can't find the inverse field of our custom field, ayayay!! After this revision, this shouldn't break the registry anymore because we create two m2o fields which will trigger cascade deletes for both o2m and related fields upon the deletion of the inverse field, these fields are both computed stored fields and they're not shown to the end user, this is all done "under the rug". Task-ID: 58808 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