1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-11 15:14:01 +01:00

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

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) {
}
}