Merge pull request '202 Geometry conflict checking to background' (#204) from 202_Geometry_conflict_checking_to_background into master
Reviewed-on: SGD-Nord/konova#204
This commit is contained in:
commit
d52db88a96
@ -372,7 +372,6 @@ class EditInterventionForm(NewInterventionForm):
|
|||||||
|
|
||||||
geometry = geom_form.save(user_action)
|
geometry = geom_form.save(user_action)
|
||||||
self.instance.geometry = geometry
|
self.instance.geometry = geometry
|
||||||
self.instance.geometry.save()
|
|
||||||
|
|
||||||
self.instance.log.add(user_action)
|
self.instance.log.add(user_action)
|
||||||
|
|
||||||
|
@ -14,6 +14,7 @@ from django.utils import timezone
|
|||||||
|
|
||||||
from konova.models import BaseResource, UuidModel
|
from konova.models import BaseResource, UuidModel
|
||||||
from konova.sub_settings.lanis_settings import DEFAULT_SRID_RLP
|
from konova.sub_settings.lanis_settings import DEFAULT_SRID_RLP
|
||||||
|
from konova.tasks import celery_check_for_geometry_conflicts
|
||||||
from konova.utils.wfs.spatial import ParcelWFSFetcher
|
from konova.utils.wfs.spatial import ParcelWFSFetcher
|
||||||
|
|
||||||
|
|
||||||
@ -28,7 +29,7 @@ class Geometry(BaseResource):
|
|||||||
|
|
||||||
def save(self, *args, **kwargs):
|
def save(self, *args, **kwargs):
|
||||||
super().save(*args, **kwargs)
|
super().save(*args, **kwargs)
|
||||||
self.check_for_conflicts()
|
celery_check_for_geometry_conflicts.delay(self.id)
|
||||||
|
|
||||||
def check_for_conflicts(self):
|
def check_for_conflicts(self):
|
||||||
""" Checks for new geometry overlaps
|
""" Checks for new geometry overlaps
|
||||||
|
@ -120,3 +120,10 @@ def celery_send_mail_deduction_changed(obj_identifier, obj_title=None, user_id=N
|
|||||||
from user.models import User
|
from user.models import User
|
||||||
user = User.objects.get(id=user_id)
|
user = User.objects.get(id=user_id)
|
||||||
user.send_mail_deduction_changed(obj_identifier, obj_title, data_changes)
|
user.send_mail_deduction_changed(obj_identifier, obj_title, data_changes)
|
||||||
|
|
||||||
|
|
||||||
|
@shared_task
|
||||||
|
def celery_check_for_geometry_conflicts(geom_id):
|
||||||
|
from konova.models import Geometry
|
||||||
|
geometry = Geometry.objects.get(id=geom_id)
|
||||||
|
geometry.check_for_conflicts()
|
||||||
|
@ -47,6 +47,7 @@ class GeometryTestCase(BaseTestCase):
|
|||||||
Returns:
|
Returns:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
self.geom_2.check_for_conflicts()
|
||||||
conflict = GeometryConflict.objects.all()
|
conflict = GeometryConflict.objects.all()
|
||||||
self.assertEqual(1, conflict.count())
|
self.assertEqual(1, conflict.count())
|
||||||
conflict = conflict.first()
|
conflict = conflict.first()
|
||||||
|
Loading…
Reference in New Issue
Block a user