From 6770a5a200127e6de542d7dce5b84f498ca7f10b Mon Sep 17 00:00:00 2001 From: PCoder Date: Wed, 1 Dec 2021 12:39:10 +0530 Subject: [PATCH] Accomodate mother field in import also --- app/management/commands/import.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/management/commands/import.py b/app/management/commands/import.py index ad6d052..2449278 100644 --- a/app/management/commands/import.py +++ b/app/management/commands/import.py @@ -463,6 +463,12 @@ def handle_object_dict(object_dict, model_name, debug=False): object_dict['keyword'] = Keyword.objects.get(keyword_id=0) # default Keyword which exists already except Keyword.DoesNotExist as dne: print(str(dne)) + if object_dict['mother'] == '': + object_dict['mother'] = 0 + try: + object_dict['mother'] = Keyword.objects.get(keyword_id=object_dict['mother']) # default Keyword which exists already + except Keyword.DoesNotExist as dne: + print(str(dne)) if model_name == 'Organization' and 'country_id' in object_dict: object_dict['country'] = object_dict['country_id'] object_dict.pop('country_id')