altocompta/include/ajax/ajax_check_ibannumber.php
sparkyx 9322113b80 ICheck_IBAN Number : check bank account (iban)
improve code CARD_PROPERTY
2025-10-26 17:10:38 +01:00

50 lines
1.4 KiB
PHP

<?php
/*
* Copyright (C) 2025 dany
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/*!
* \file
* \brief check the VAT Number with VIES,
* \see ivatnumber.class.php
*/
if (!defined('ALLOWED')) die('Appel direct ne sont pas permis');
$http = new \HttpInput();
$obj = new stdClass;
try {
$iban = $http->get("iban");
$p_domid = $http->get("p_domid");
if (check_iban($iban) == true ){
$obj->status = 'OK';
$obj->html=_('valide');
$obj->data=$iban;
echo json_response($obj);
return;
}
$obj->status = 'NOK';
$obj->html=_('Erreur');
echo json_response($obj);
} catch (\Exception $e) {
$obj->status = 'NOK';
$obj->html=$e->getMessage();
record_log($e);
return;
}