Merge pull request 'HOTFIX' (#354) from master into Docker

Reviewed-on: SGD-Nord/konova#354
pull/380/head
mpeltriaux 12 months ago
commit 02af67d907

@ -493,7 +493,7 @@ class Compensation(AbstractCompensation, CEFMixin, CoherenceMixin, PikMixin):
try:
is_old_entry = self.intervention.legal.binding_date < LKOMPVZVO_PUBLISH_DATE
except TypeError:
is_old_entry = True
is_old_entry = False
if is_old_entry:
retval = COMPENSATION_LANIS_LAYER_NAME_UNRECORDED_OLD_ENTRY

@ -398,7 +398,8 @@ class Intervention(BaseObject,
try:
is_old_entry = self.legal.binding_date < LKOMPVZVO_PUBLISH_DATE
except TypeError:
is_old_entry = True
is_old_entry = False
if is_old_entry:
retval = INTERVENTION_LANIS_LAYER_NAME_UNRECORDED_OLD_ENTRY
else:

Loading…
Cancel
Save