From 23117eaa80d3a1702bf9cca0486a71fec24162d6 Mon Sep 17 00:00:00 2001 From: Kenio de Souza Date: Mon, 29 Sep 2025 10:42:46 -0300 Subject: [PATCH] =?UTF-8?q?Ajuste,=20aplicando=20filtro=20de=20consulta=20?= =?UTF-8?q?por=20conter=20NF=20no=20relat=C3=B3rio?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../financial_movements/financial_movements_datagrid.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vendor/print/financial_movements/financial_movements_datagrid.php b/vendor/print/financial_movements/financial_movements_datagrid.php index 9f89300..a5d8933 100644 --- a/vendor/print/financial_movements/financial_movements_datagrid.php +++ b/vendor/print/financial_movements/financial_movements_datagrid.php @@ -145,7 +145,7 @@ try{ $header .= ' '; $header .= ' REFERÊNCIA'; $header .= ' PAGAMENTO'; - $header .= ' DESCRIÇÃO'; + $header .= ' DESCRIÇÃO'; $header .= ' CNPJ/CPF'; $header .= ' CLIENTE'; $header .= ' TOTAL'; @@ -241,7 +241,7 @@ try{ $body .= ' '.$i.''; $body .= ' '.$Result->movement_reference.''; $body .= ' '.(isset($Result->movement_date_paid) ? date('d/m/Y', strtotime($Result->movement_date_paid)) : ($Main->CheckDay($Result->movement_date_scheduled) > 1 ? $Main->diffDate($Result->movement_date_scheduled, date('Y-m-d')).' dia(s) de atraso' : '')).''; - $body .= ' '.$Result->description.''; + $body .= ' '.$Result->description.''; $body .= ' '.$Main->formatarCPF_CNPJ($Result->cnpj).''; $body .= ' '.$Result->name_fantasy.''; $body .= ' '.( isset($Result->movement_value_paid) ? number_format(($Result->movement_value_paid-($Result->movement_value_registration_tariff+$Result->movement_value_settlement_tariff)), 2, ',', '.') : number_format($Result->movement_value, 2, ',', '.')).'';