Changes between Initial Version and Version 1 of Ticket #4102, comment 67


Ignore:
Timestamp:
Nov 29, 2011, 7:25:01 PM (12 years ago)
Author:
German M. Bravo

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4102, comment 67

    initial v1  
    1 With the current patch in multitable inheritance, when I modify an already existing object and save it, it only saves data to the parent. This happens because `_reset_modified_attrs()` is called during the topmost first parent's save_base() call and further updates are ignored since `_modified_attrs` no longer have anything after that. I'm attaching a new patch to fix this.
     1With the current patch in multitable inheritance, when you modify an already existing object and save it, it only saves data to the parent. This happens because `_reset_modified_attrs()` is called during the topmost first parent's `save_base()` call and further updates are ignored since `self._modified_attrs` no longer have anything after that. I'm attaching a new patch to fix this.
Back to Top