Browse Source

Evita que se criem autores com nomes repetidos

pull/2995/head
Edward Ribeiro 5 years ago
committed by Cesar Carvalho
parent
commit
12a5b1b461
  1. 4
      sapl/base/forms.py

4
sapl/base/forms.py

@ -619,6 +619,10 @@ class AutorForm(ModelForm):
tipo = cd['tipo']
if 'nome' in cd and \
Autor.objects.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.')

Loading…
Cancel
Save