-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BACK - Informações mal formatadas e mudanças no financeiro #298
Comments
Mudanças no tipoIntegracao, integração do CCT com o BigqueryRequisitos:
Mudanças:
Tarefas 22/04/2024
|
CNAB gerou valor errado para o ThiagoFoi pago dia 7 Verificando no TransacaoView prod (não é OrdemPagamento mas serve como evidência): SELECT SUM(tv."valorTransacao")
FROM transacao_view tv
WHERE tv."idConsorcio" = '9'
AND tv."datetimeProcessamento" >= '2024-05-24 00:00:00.000' Identificando o problema (em prod)SELECT * FROM ita.id itaid, cf.nome, id.id idit, it.valor, da."valorLancamento", da.id idda
FROM detalhe_a da "itemTransacaoAgrupadoId" = ida.id
INNER JOIN item_transacao_agrupado ita on da."ItemTransacaoAgrupadoId" = ita.id
INNER JOIN item_transacao it on it."ItemTransacaoAgrupadoId" = ita.id
INNER JOIN arquivo_publicacao ap on ap."itemTransacaoId" = it.id
INNER JOIN cliente_favorecido cf on cf.id = it."clienteFavorecidoId"
WHERE it."dataOrdem" >= '2024-05-31 00:00:00.000'
AND it."nomeConsorcio" = 'STPC'
Está agrupando pelo idConsorcio ao invés do idOperadora. Verificamos que há 1 transacaoAgrupado associado com vários detalheA. O que teremos que fazer
|
Correções
Ou seja, quando selecionar em Mês todo, ao selecionar os dias, ele irá pegar apenas as sextas selecionadas e então pegar os períodos dessas sextas.
The text was updated successfully, but these errors were encountered: