From 851f2583454a403b806eb323b3ac5ecfdfad5549 Mon Sep 17 00:00:00 2001 From: Kenio de Souza Date: Wed, 17 Dec 2025 08:14:10 -0300 Subject: [PATCH] Debug --- vendor/model/FinancialMovements.class.php | 40 +++++++++++------------ 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/vendor/model/FinancialMovements.class.php b/vendor/model/FinancialMovements.class.php index 4f4bb77..421a2a8 100644 --- a/vendor/model/FinancialMovements.class.php +++ b/vendor/model/FinancialMovements.class.php @@ -1265,31 +1265,31 @@ class FinancialMovements if($this->movementUserConfirmed > 0){ /** Consulta SQL */ - $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, - movement_value_registration_tariff = :movement_value_registration_tariff, - movement_value_settlement_tariff = :movement_value_settlement_tariff, - movement_date_update = CURRENT_TIMESTAMP, - user_id_update = :user_id_update - where financial_movements_id = :financial_movements_id "; + echo $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, + movement_value_registration_tariff = :movement_value_registration_tariff, + movement_value_settlement_tariff = :movement_value_settlement_tariff, + movement_date_update = CURRENT_TIMESTAMP, + user_id_update = :user_id_update + where financial_movements_id = :financial_movements_id "; } else { /** Consulta SQL */ - $this->sql = "update financial_movements set movement_date_paid = :movement_date_paid, - movement_value_paid = :movement_value_paid, - note = :note, - movement_user_confirmed = :movement_user_confirmed, - movement_value_fees = :movement_value_fees, - movement_value_registration_tariff = :movement_value_registration_tariff, - movement_value_settlement_tariff = :movement_value_settlement_tariff, - status = 2, - movement_date_update = CURRENT_TIMESTAMP, - user_id_update = :user_id_update - where financial_movements_id = :financial_movements_id "; + $this->sql = "update financial_movements set movement_date_paid = :movement_date_paid, + movement_value_paid = :movement_value_paid, + note = :note, + movement_user_confirmed = :movement_user_confirmed, + movement_value_fees = :movement_value_fees, + movement_value_registration_tariff = :movement_value_registration_tariff, + movement_value_settlement_tariff = :movement_value_settlement_tariff, + status = 2, + movement_date_update = CURRENT_TIMESTAMP, + user_id_update = :user_id_update + where financial_movements_id = :financial_movements_id "; }