36_Quality_checks #37

Merged
mpeltriaux merged 7 commits from 36_Quality_checks into master 2021-10-26 07:50:38 +02:00
2 changed files with 12 additions and 13 deletions
Showing only changes of commit 4c7efdb800 - Show all commits

View File

@ -97,16 +97,3 @@ class InterventionQualityChecker(AbstractQualityChecker):
self.messages.append(
_("No compensation of any type found (Compensation, Payment, Deduction)")
)
def _check_geometry(self):
""" Checks on the geometry
Returns:
"""
try:
geometry_obj = self.obj.geometry
if geometry_obj.geom.empty:
self._add_missing_attr_name(_("Geometry"))
except AttributeError:
self._add_missing_attr_name(_("Geometry"))

View File

@ -32,3 +32,15 @@ class AbstractQualityChecker:
missing = _('missing')
self.messages.append(f"{attr_name} {missing}")
def _check_geometry(self):
""" Checks on the geometry
Returns:
"""
try:
geometry_obj = self.obj.geometry
if geometry_obj.geom.empty:
self._add_missing_attr_name(_("Geometry"))
except AttributeError:
self._add_missing_attr_name(_("Geometry"))