Atualizando página inicial

This commit is contained in:
Kenio 2025-08-20 13:10:59 -03:00
parent 3bac6d6988
commit b8bda03d53

View file

@ -1470,10 +1470,7 @@ class FinancialMovements
ORDER BY fm.movement_date_scheduled ASC;';
/** Preparo o SQL para execução */
$this->stmt = $this->connection->connect()->prepare($this->sql);
/** Preencho os parâmetros do SQL */
$this->stmt->bindParam(':financial_movements_id', $this->financialMovementsId);
$this->stmt = $this->connection->connect()->prepare($this->sql);
/** Executo o SQL */
$this->stmt->execute();
@ -1498,10 +1495,7 @@ class FinancialMovements
ORDER BY fm.movement_date_scheduled ASC;';
/** Preparo o SQL para execução */
$this->stmt = $this->connection->connect()->prepare($this->sql);
/** Preencho os parâmetros do SQL */
$this->stmt->bindParam(':financial_movements_id', $this->financialMovementsId);
$this->stmt = $this->connection->connect()->prepare($this->sql);
/** Executo o SQL */
$this->stmt->execute();