This commit is contained in:
Kenio 2025-12-17 08:19:22 -03:00
parent 851f258345
commit 3807fa99e0

View file

@ -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";
}