Thursday, February 4, 2016
1 change
Resolved issues and error corrections
Updates made to a parent business object now automatically carry through to related child objects. This improves consistency across the system and reduces cases where customizations or upgrades behave differently depending on the model relationship.
Original PR description
The problem we address is the following: - suppose model B inherits from model A; - extend model A (using `_inherit`) by adding fields, methods, etc. - the changes made to A are not visible in B. We have modified the way the models are built, such that changes in parent models are automatically visible in children models. This fixes #9084.