From 5e8d69c5bd9ab455e4abe7934a10d1a089d53eb2 Mon Sep 17 00:00:00 2001 From: eribeiro Date: Wed, 1 Apr 2020 09:46:09 -0300 Subject: [PATCH] HOT-FIX: readiciona checagem omitida em refactoring --- sapl/sessao/forms.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sapl/sessao/forms.py b/sapl/sessao/forms.py index b4983c7b9..9ff12378c 100644 --- a/sapl/sessao/forms.py +++ b/sapl/sessao/forms.py @@ -75,6 +75,10 @@ class SessaoPlenariaForm(FileFieldCheckMixin, ModelForm): abertura_entre_leg = leg.data_inicio <= abertura <= leg.data_fim abertura_entre_sl = sl.data_inicio <= abertura <= sl.data_fim if encerramento is not None: + # Verifica se a data de encerramento é anterior a data de abertura + if encerramento < abertura: + raise ValidationError("A data de encerramento não pode ser " + "anterior a data de abertura.") encerramento_entre_leg = leg.data_inicio <= encerramento <= leg.data_fim encerramento_entre_sl = sl.data_inicio <= encerramento <= sl.data_fim else: