|
|
@ -645,12 +645,12 @@ class DocumentoAcessorioAdministrativoForm(FileFieldCheckMixin, ModelForm): |
|
|
|
|
|
|
|
if arquivo: |
|
|
|
validar_arquivo(arquivo, "Arquivo") |
|
|
|
else: |
|
|
|
## TODO: definir arquivo no form e preservar o nome do campo |
|
|
|
## que gerou a mensagem de erro. |
|
|
|
## arquivo = forms.FileField(required=True, label="Texto Integral") |
|
|
|
nome_arquivo = self.fields['arquivo'].label |
|
|
|
raise ValidationError(f'Favor anexar arquivo em {nome_arquivo}') |
|
|
|
# else: |
|
|
|
# ## TODO: definir arquivo no form e preservar o nome do campo |
|
|
|
# ## que gerou a mensagem de erro. |
|
|
|
# ## arquivo = forms.FileField(required=True, label="Texto Integral") |
|
|
|
# nome_arquivo = self.fields['arquivo'].label |
|
|
|
# raise ValidationError(f'Favor anexar arquivo em {nome_arquivo}') |
|
|
|
|
|
|
|
return self.cleaned_data |
|
|
|
|
|
|
@ -1185,13 +1185,12 @@ class DocumentoAdministrativoForm(FileFieldCheckMixin, ModelForm): |
|
|
|
|
|
|
|
if texto_integral: |
|
|
|
validar_arquivo(texto_integral, "Texto Integral") |
|
|
|
else: |
|
|
|
## TODO: definir arquivo no form e preservar o nome do campo |
|
|
|
## que gerou a mensagem de erro. |
|
|
|
## texto_integral = forms.FileField(required=True, label="Texto Integral") |
|
|
|
nome_arquivo = self.fields['texto_integral'].label |
|
|
|
raise ValidationError(f'Favor anexar arquivo em {nome_arquivo}') |
|
|
|
|
|
|
|
# else: |
|
|
|
# ## TODO: definir arquivo no form e preservar o nome do campo |
|
|
|
# ## que gerou a mensagem de erro. |
|
|
|
# ## texto_integral = forms.FileField(required=True, label="Texto Integral") |
|
|
|
# nome_arquivo = self.fields['texto_integral'].label |
|
|
|
# raise ValidationError(f'Favor anexar arquivo em {nome_arquivo}') |
|
|
|
|
|
|
|
return self.cleaned_data |
|
|
|
|
|
|
|