Fixed deletion of motions with change recommendations. Fixed #4415.
This commit is contained in:
parent
1ce6804a43
commit
197ff7264c
@ -225,7 +225,12 @@ def handle_changed_elements(elements: Iterable[Element]) -> None:
|
|||||||
for element in elements:
|
for element in elements:
|
||||||
if element.get("reload"):
|
if element.get("reload"):
|
||||||
model = get_model_from_collection_string(element["collection_string"])
|
model = get_model_from_collection_string(element["collection_string"])
|
||||||
|
try:
|
||||||
instance = model.objects.get(pk=element["id"])
|
instance = model.objects.get(pk=element["id"])
|
||||||
|
except model.DoesNotExist:
|
||||||
|
# The instance was deleted so we set full_data explicitly to None.
|
||||||
|
element["full_data"] = None
|
||||||
|
else:
|
||||||
element["full_data"] = instance.get_full_data()
|
element["full_data"] = instance.get_full_data()
|
||||||
|
|
||||||
# Save histroy here using sync code.
|
# Save histroy here using sync code.
|
||||||
|
@ -176,7 +176,7 @@ def CASCADE_AND_AUTOUODATE(
|
|||||||
collector: Any, field: Any, sub_objs: Any, using: Any
|
collector: Any, field: Any, sub_objs: Any, using: Any
|
||||||
) -> None:
|
) -> None:
|
||||||
"""
|
"""
|
||||||
Like models.SET_NULL but also informs the autoupdate system about the
|
Like models.CASCADE but also informs the autoupdate system about the
|
||||||
root rest element of the also deleted instance.
|
root rest element of the also deleted instance.
|
||||||
"""
|
"""
|
||||||
if len(sub_objs) != 1:
|
if len(sub_objs) != 1:
|
||||||
|
Loading…
Reference in New Issue
Block a user