Skip to content

Commit

Permalink
Merge pull request #2909 from prefeiturasp/hotfix/9.3.2
Browse files Browse the repository at this point in the history
Hotfix/9.3.2
  • Loading branch information
mdiori authored Apr 30, 2024
2 parents 901db34 + 79b3a8d commit 8e3c5e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sme_ptrf_apps/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "9.3.1"
__version__ = "9.3.2"

__version_info__ = tuple(
[
Expand Down
5 changes: 3 additions & 2 deletions sme_ptrf_apps/receitas/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ def clean_unidades(self):
if len(unidades_com_receita_do_tipo) > 0 and not (unidades.filter(codigo_eol__in=unidades_com_receita_do_tipo).exists() and (len(unidades_selecionadas) == len(unidades_com_receita_do_tipo))):
unidades_faltantes = Unidade.objects.filter(codigo_eol__in=unidades_com_receita_do_tipo).exclude(
codigo_eol__in=unidades_selecionadas).values_list('codigo_eol', flat=True)
raise ValidationError(
f"Não é possível restringir tipo de receita, pois existem unidades que já possuem receita criada com esse tipo e não estão selecionadas. Unidades faltantes: {list(unidades_faltantes)}")
if len(unidades_faltantes) > 0:
raise ValidationError(
f"Não é possível restringir tipo de receita, pois existem unidades que já possuem receita criada com esse tipo e não estão selecionadas. Unidades faltantes: {list(unidades_faltantes)}")
return unidades


Expand Down

0 comments on commit 8e3c5e3

Please sign in to comment.