ignore undefined entity data

This commit is contained in:
j 2015-04-21 15:34:37 +05:30
parent 0b103afeca
commit 9d3c50fcec
1 changed files with 3 additions and 1 deletions

View File

@ -180,9 +180,11 @@ class Entity(models.Model):
else:
Find.objects.filter(entity=self, key=key).delete()
entity = get_by_id(settings.CONFIG['entities'], self.type)
if not entity:
return
with transaction.commit_on_success():
ids = ['name']
entity = get_by_id(settings.CONFIG['entities'], self.type)
for key in entity['keys']:
value = self.data.get(key['id'])
if isinstance(value, list):