diff options
-rw-r--r-- | ishtar_common/wizards.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index 47355dd06..ab17ff422 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -898,10 +898,11 @@ class Wizard(IshtarWizard): ) else: related_model.add(value) - # necessary to manage interaction between models like - # material_index management for baseitems - obj._cached_label_checked = False - obj.save() + # necessary to manage interaction between models like + # material_index management for baseitems + obj._cached_label_checked = False + obj._post_saved_geo = False + obj.save() # force post_save for old related m2ms (which can have been detached # from the current object) |