Edward
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
sapl/protocoloadm/forms.py
|
@ -708,10 +708,10 @@ class DocumentoAdministrativoForm(ModelForm): |
|
|
ano=ano_protocolo).exists() |
|
|
ano=ano_protocolo).exists() |
|
|
|
|
|
|
|
|
exist_doc = DocumentoAdministrativo.objects.filter( |
|
|
exist_doc = DocumentoAdministrativo.objects.filter( |
|
|
protocolo_id=numero_protocolo, |
|
|
protocolo__numero=numero_protocolo, |
|
|
ano=ano_protocolo).exists() |
|
|
protocolo__ano=ano_protocolo).exists() |
|
|
if exist_materia or exist_doc: |
|
|
if exist_materia or exist_doc: |
|
|
raise ValidationError(_('Protocolo %s/%s ja possui' |
|
|
raise ValidationError(_('Protocolo %s/%s já possui' |
|
|
' documento vinculado' |
|
|
' documento vinculado' |
|
|
% (numero_protocolo, ano_protocolo))) |
|
|
% (numero_protocolo, ano_protocolo))) |
|
|
|
|
|
|
|
|