remove the registration of id_user in UsersBankingAccountVerification table

This commit is contained in:
root 2026-03-04 14:12:55 +01:00
parent 2c4032729f
commit beb26e269f
1 changed files with 0 additions and 1 deletions

View File

@ -591,7 +591,6 @@ INNER JOIN countries c ON oc.id_country = c.id INNER JOIN type_operators top ON
$user_banking_account_verif = new UsersBankingAccountVerification(); $user_banking_account_verif = new UsersBankingAccountVerification();
$user_banking_account_verif->id_transaction = $this->getTransactionID(); $user_banking_account_verif->id_transaction = $this->getTransactionID();
$user_banking_account_verif->iban = $request->iban; $user_banking_account_verif->iban = $request->iban;
$user_banking_account_verif->id_user = $user->id; // Ajouté pour la cohérence
$user_banking_account_verif->user_code = $user->user_code; $user_banking_account_verif->user_code = $user->user_code;
$user_banking_account_verif->id_bank_country = $request->id_bank; $user_banking_account_verif->id_bank_country = $request->id_bank;
$user_banking_account_verif->is_verified = 0; $user_banking_account_verif->is_verified = 0;