Browse Source

Evita que se criem autores com nomes repetidos

pull/2965/head
Edward Ribeiro 5 years ago
parent
commit
8829879f74
  1. 4
      sapl/base/forms.py

4
sapl/base/forms.py

@ -618,6 +618,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