From cd7fb03b4710bc2888a9cf884b5faaddcfe1a009 Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Tue, 12 Jun 2018 13:27:41 -0300 Subject: [PATCH] =?UTF-8?q?HOT-FIX:=20somente=20checa=20unicidade=20de=20n?= =?UTF-8?q?orma=20na=20inser=C3=A7=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sapl/norma/forms.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/sapl/norma/forms.py b/sapl/norma/forms.py index 2574edb20..5e0eb99ff 100644 --- a/sapl/norma/forms.py +++ b/sapl/norma/forms.py @@ -125,11 +125,13 @@ class NormaJuridicaForm(ModelForm): if not self.is_valid(): return cleaned_data - norma = NormaJuridica.objects.filter(ano=cleaned_data['ano'], - numero=cleaned_data['numero'], - tipo=cleaned_data['tipo']).exists() - if norma: - raise ValidationError("Já existe uma norma de mesmo Tipo, Ano e Número no sistema") + if not self.instance: + norma = NormaJuridica.objects.filter(ano=cleaned_data['ano'], + numero=cleaned_data['numero'], + tipo=cleaned_data['tipo']).exists() + if norma: + raise ValidationError("Já existe uma norma de mesmo Tipo, Ano " + "e Número no sistema") if (cleaned_data['tipo_materia'] and cleaned_data['numero_materia'] and cleaned_data['ano_materia']):