1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-08 15:48:45 +01:00

fix: creazione banca in importazione fattura elettronica

This commit is contained in:
valentina 2024-11-07 09:45:20 +01:00
parent fd6d946448
commit 4d6e768844

View File

@ -392,8 +392,7 @@ class IBAN
$this->nation = $nation = substr($iban, 0, 2);
$info = self::$countries[$nation];
$structure = $info['structure'];
$structure = str_replace(' ', '', $structure);
$structure = $info['structure'] ? str_replace(' ', '', $info['structure']) : '';
$regex = $nation;
$keys = array_keys(self::$parsers);