Daily updates from Odoo
Friday, March 20, 2020
2 changes · master
Resolved issues and error corrections
The Social app now correctly shows and supports archive and unarchive actions for social accounts. This helps users manage inactive accounts reliably without running into missing or non-working actions.
Original PR description
Pad:https://pad.odoo.com/p/r.eae03205d53495881bdbb562f1a02503 Task:https://www.odoo.com/web#id=2204135&action=327&model=project.task&view_type=form&cids=2&menu_id=4720
This fix prevents an invoice extraction setting on company records from being unnecessarily mandatory. It helps avoid setup and testing issues when creating companies while other apps, such as CRM, are being installed or updated.
Original PR description
… necessary Adding required fields on company model is annoying for tests. Indeed multi company tests may run during module installation, notably in CRM. Those tests generally require to create a new company which is not possible if the column is required but module not already loaded in registry. This is the case if for example account_invoice_extract is installed and updating CRM when testing website_crm_score. When possible, avoid required fields on a such used model as company. In this case moreover setting a boolean as required makes no sense and has no impact in code.