diff --git a/vendor/model/FinancialMovements.class.php b/vendor/model/FinancialMovements.class.php index 421a2a8..7774476 100644 --- a/vendor/model/FinancialMovements.class.php +++ b/vendor/model/FinancialMovements.class.php @@ -1265,7 +1265,7 @@ class FinancialMovements if($this->movementUserConfirmed > 0){ /** Consulta SQL */ - echo $this->sql = "update financial_movements set movement_date_paid = :movement_date_paid, + $this->sql = "update financial_movements set movement_date_paid = :movement_date_paid, movement_value_paid = :movement_value_paid, note = :note, movement_value_fees = :movement_value_fees, @@ -1301,7 +1301,7 @@ class FinancialMovements /** Verifica se é uma saída */ }elseif($this->financialOutputsId > 0){ - $this->sql .= " and financial_outputs_id = :financial_outputs_id"; + echo $this->sql .= " and financial_outputs_id = :financial_outputs_id"; }