Atualizando financial_movements_save.php

This commit is contained in:
Kenio 2025-08-20 11:07:10 -03:00
parent fd226e99d3
commit 02d2d2a8cd

View file

@ -980,7 +980,7 @@ class FinancialMovements
AND fm.sicoob_response IS NOT NULL
AND fm.movement_date_paid IS NULL
AND fm.status = 1
AND fm.movement_date_scheduled <= CURRENT_DATE';
AND fm.movement_date_scheduled < CURRENT_DATE';
/** Preparo o SQL para execução */
$this->stmt = $this->connection->connect()->prepare($this->sql);
@ -1022,7 +1022,7 @@ class FinancialMovements
AND fm.sicoob_response IS NOT NULL
AND fm.movement_date_paid IS NULL
AND fm.status = 1
AND fm.movement_date_scheduled <= CURRENT_DATE
AND fm.movement_date_scheduled < CURRENT_DATE
ORDER BY fm.movement_date_scheduled ASC';
/** Preparo o SQL para execução */