From 52e3efb0b7e858d6f68539bbbe0a6f842064d9fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Rodrigues?= Date: Tue, 30 Jun 2020 10:53:01 -0300 Subject: [PATCH] =?UTF-8?q?Fix=20#3211=20-=20Valida=C3=A7=C3=A3o=20de=20Cr?= =?UTF-8?q?ia=C3=A7=C3=A3o=20e=20Edi=C3=A7=C3=A3o=20de=20Autores=20(#3212)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Altera posição de validação * Adiciona correção --- sapl/base/forms.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/sapl/base/forms.py b/sapl/base/forms.py index 77b2231e3..ab075ef13 100644 --- a/sapl/base/forms.py +++ b/sapl/base/forms.py @@ -548,16 +548,13 @@ class AutorForm(ModelForm): _('O Tipo do Autor deve ser selecionado.')) tipo = cd['tipo'] - - if 'nome' in cd and \ - qs_autor.filter(nome=cd['nome']).exists(): - raise ValidationError("Autor '%s' já existente!" % cd['nome']) - if not tipo.content_type: if 'nome' not in cd or not cd['nome']: self.logger.error('Nome do Autor não informado.') raise ValidationError( _('O Nome do Autor deve ser informado.')) + elif qs_autor.filter(nome=cd['nome']).exists(): + raise ValidationError("Autor '%s' já existente!" % cd['nome']) else: if 'autor_related' not in cd or not cd['autor_related']: self.logger.error('Registro de %s não escolhido para ser '