From 761fefea0903fddb3f91c5be58a94d9311668bbe Mon Sep 17 00:00:00 2001 From: Luca Date: Fri, 21 May 2021 17:41:20 +0200 Subject: [PATCH] Retrofix 2.4.23 procedura salvataggio banche --- update/2_4_23.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/update/2_4_23.php b/update/2_4_23.php index c9cb14f57..51de407c5 100644 --- a/update/2_4_23.php +++ b/update/2_4_23.php @@ -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) { + } }