diff options
author | QuentinAndre <quentin.andre@imt-atlantique.net> | 2021-07-15 18:05:13 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-11-16 17:04:41 +0100 |
commit | 847d8e95b1e896170bb5dc08d54eb64370b50bfd (patch) | |
tree | 342ac93cf125cb4386f382f9fbb782a7d00fc7aa /archaeological_operations | |
parent | f9fb48873a0d828168e83ca298084c31193355bf (diff) | |
download | Ishtar-847d8e95b1e896170bb5dc08d54eb64370b50bfd.tar.bz2 Ishtar-847d8e95b1e896170bb5dc08d54eb64370b50bfd.zip |
better tests and beginning operations
Diffstat (limited to 'archaeological_operations')
-rw-r--r-- | archaeological_operations/models.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index a49504506..f1368abc2 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -1605,6 +1605,22 @@ class Operation( return None return q.all()[0].poly, self._meta.verbose_name + def get_geo_items(self, get_polygons, rounded=True): + dict = super(Operation, self).get_geo_items(get_polygons, rounded) + associated_geo_items = {"associated context records": {}} + ContextRecord = apps.get_model("archaeological_context_records", "ContextRecord") + for label in self._get_associated_cached_labels(): + try: + cr = ContextRecord.objects.get(label=label) + associated_geo_items["associated context records"][ + str(label) + ] = cr.get_geo_items(get_polygons, rounded) + except ContextRecord.DoesNotExist: + pass + dict["properties"] = associated_geo_items + return dict + + def context_record_relations_q(self): from archaeological_context_records.models import RecordRelations as CRRL |