-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(79686): Corrige layout consolidado dre Corrige má distribuição das linhas, na coluna das despesas, quando não há o recurso de livre aplicação * fix(79837): Corrige lista de pcs para acompanhamento de PC Informações de técnico, data de recebimento, data de última análise e devolução ao tesouro não eram incluídas nas consultas de alguns status de PC. * fix(hf.79686): Corrige má distribuição de linhas na execução financeira Remove labels de teste * fix(1.3.12): Atualiza versão e hotfixes.md
- Loading branch information
1 parent
363626f
commit f058bc2
Showing
9 changed files
with
73 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "1.33.11" | ||
__version__ = "1.33.12" | ||
|
||
|
||
__version_info__ = tuple( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
from ..models import ProcessoAssociacao | ||
|
||
|
||
def get_processo_sei_da_prestacao(prestacao_contas): | ||
return ProcessoAssociacao.by_associacao_periodo(associacao=prestacao_contas.associacao, | ||
periodo=prestacao_contas.periodo) | ||
|
||
|
||
def get_processo_sei_da_associacao_no_periodo(associacao, periodo): | ||
return ProcessoAssociacao.by_associacao_periodo(associacao=associacao, | ||
periodo=periodo) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.