Skip to content

Commit

Permalink
Merge pull request #2314 from prefeiturasp/hotfix/8.8.1
Browse files Browse the repository at this point in the history
Hotfix/8.8.1
  • Loading branch information
ollyvergithub authored Sep 5, 2023
2 parents 48ad5cc + 65db1dc commit 74b0cce
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 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__ = "8.8.0"
__version__ = "8.8.1"

__version_info__ = tuple(
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ def cria_dados_fisicos_financeiros(dre, periodo, apenas_nao_publicadas, eh_conso
{
'tipo_conta': info.get('tipo_conta'),
'exibe_valores': False,
'mensagem_movimentacao_financeira': 'Não houve movimentação financeira.',
'mensagem_movimentacao_financeira': 'Conta inativa.',
'custeio': None,
'capital': None,
'livre': None,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
</td>
{% endif %}

{% if conta.exibe_valores %} {% comment %} Caso exista valores eles são exibidos, senão exibe uma mensagem que vem do back - Não houve movimentação financeira. {% endcomment %}
{% if conta.exibe_valores %} {% comment %} Caso exista valores eles são exibidos, senão exibe uma mensagem que vem do back - Conta inativa. {% endcomment %}

<td rowspan="8">{{ conta.tipo_conta }}</td>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ def test_delete_vinculo_usuario_unidade(

User = get_user_model()
u = User.objects.filter(username=usuario_duas_unidades.username).first()
assert list(u.unidades.values_list('codigo_eol', flat=True)) == [unidade.codigo_eol, unidade_diferente.codigo_eol ]

assert unidade.codigo_eol in list(u.unidades.values_list('codigo_eol', flat=True))
assert unidade_diferente.codigo_eol in list(u.unidades.values_list('codigo_eol', flat=True))

jwt_authenticated_client_u.delete(
f"/api/usuarios/{usuario_duas_unidades.id}/unidades/{unidade.codigo_eol}/",
Expand Down

0 comments on commit 74b0cce

Please sign in to comment.