From 372908c17e39c79a4447c021f662c301b15785ea Mon Sep 17 00:00:00 2001 From: Andrea Lepori Date: Tue, 23 Jan 2024 17:02:54 +0100 Subject: update group of docs when type changes --- server/views.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'server/views.py') diff --git a/server/views.py b/server/views.py index 13eb6e4..c569d56 100644 --- a/server/views.py +++ b/server/views.py @@ -1049,6 +1049,13 @@ def docedit_wrapper(request, context): group = Group.objects.filter(name=custom_group)[0] custom_group_bool = True + # we are changing the doc group hence update all existing docs + if doc.group != group: + existing_docs = Document.objects.filter(document_type=doc) + for existing_doc in existing_docs: + existing_doc.group = group + existing_doc.save() + # edit type doc.custom_group = custom_group_bool doc.auto_sign = auto_sign -- cgit v1.2.1