Ajuste, aplicando filtro de consulta por conter NF no relatório

This commit is contained in:
Kenio 2025-09-29 10:52:01 -03:00
parent c7ae6022be
commit cd08834336

View file

@ -321,6 +321,14 @@ try{
$body .= ' </tbody>';
$body .= '</table>';
/** Verifica se o status */
if($FinancialMovementsValidate->getStatusSearch() == 3){
$body .= '<br/>';
$body .= 'Total de itens: '.$i.'<br/>';
$body .= 'Total Geral R$ '.number_format(($totalGeneral-$totalFees), 2, ',', '.').'<br/>';
} else {
/** Verifica o tipo da impressão */
switch($FinancialMovementsValidate->getType()){
@ -344,6 +352,8 @@ try{
}
}
/** Acrescenta os dados ao corpo do relatório */
$mpdf->WriteHTML($body);