Merge pull request #56 from JurunenseDevInterno/hotfix-entidade-exportacao-analitica

fix: adicionado a coluna Ano/Mes Comp em /DRE
This commit is contained in:
Alessandro Gonçalves 2025-12-04 10:34:13 -03:00 committed by GitHub
commit ba78ac8e5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 0 deletions

View File

@ -547,6 +547,14 @@ export default function AnaliticoComponent({ filtros }: AnaliticoProps) {
resizable: true,
renderCell: dateCellRenderer,
},
{
field: "ano_mes_comp",
headerName: "Ano/Mês Comp",
width: 110,
sortable: true,
resizable: true,
renderCell: (params: any) => params.value || "-",
},
{
field: "entidade",
headerName: "Entidade",
@ -773,6 +781,7 @@ export default function AnaliticoComponent({ filtros }: AnaliticoProps) {
"DTPAGTO": item.data_pagto
? new Date(item.data_pagto).toLocaleDateString("pt-BR")
: "-",
"ANOMESCOMP": item.ano_mes_comp || "-",
"ENTIDADE": item.entidade || "-",
"TIPOPARCEIRO": item.tipo_parceiro || "-",
"CODFORNEC": item.codigo_fornecedor || "-",