Merge pull request #57 from JurunenseDevInterno/dev

Dev
This commit is contained in:
Alessandro Gonçalves 2025-12-04 10:34:36 -03:00 committed by GitHub
commit 732338df44
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, resizable: true,
renderCell: dateCellRenderer, renderCell: dateCellRenderer,
}, },
{
field: "ano_mes_comp",
headerName: "Ano/Mês Comp",
width: 110,
sortable: true,
resizable: true,
renderCell: (params: any) => params.value || "-",
},
{ {
field: "entidade", field: "entidade",
headerName: "Entidade", headerName: "Entidade",
@ -773,6 +781,7 @@ export default function AnaliticoComponent({ filtros }: AnaliticoProps) {
"DTPAGTO": item.data_pagto "DTPAGTO": item.data_pagto
? new Date(item.data_pagto).toLocaleDateString("pt-BR") ? new Date(item.data_pagto).toLocaleDateString("pt-BR")
: "-", : "-",
"ANOMESCOMP": item.ano_mes_comp || "-",
"ENTIDADE": item.entidade || "-", "ENTIDADE": item.entidade || "-",
"TIPOPARCEIRO": item.tipo_parceiro || "-", "TIPOPARCEIRO": item.tipo_parceiro || "-",
"CODFORNEC": item.codigo_fornecedor || "-", "CODFORNEC": item.codigo_fornecedor || "-",