Retrofix 2.4.23 procedura salvataggio banche

This commit is contained in:
Luca 2021-05-21 17:41:20 +02:00
parent 1de512678c
commit 761fefea09
1 changed files with 4 additions and 1 deletions

View File

@ -19,5 +19,8 @@ foreach ($fatture as $fattura) {
// Completamento automatico informazioni IBAN per banche
$banche = Banca::all();
foreach ($banche as $banca) {
$banca->save();
try {
$banca->save();
} catch (\PDOException $e) {
}
}