From 9e83ba87ee72e79f87904f3061aeb21cdb612b78 Mon Sep 17 00:00:00 2001 From: Thomas Zilio Date: Mon, 15 Jul 2019 09:22:47 +0200 Subject: [PATCH] Fix aggiornamento --- modules/fatture/src/Fattura.php | 4 ++-- update/2_4_10.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/fatture/src/Fattura.php b/modules/fatture/src/Fattura.php index 0bc875cf1..4405fb006 100644 --- a/modules/fatture/src/Fattura.php +++ b/modules/fatture/src/Fattura.php @@ -526,7 +526,7 @@ class Fattura extends Document public function getBollo() { if (isset($this->bollo)) { - return $this->bollo; + return $this->bollo; } $righe_bollo = $this->getRighe()->filter(function ($item, $key) { @@ -548,7 +548,7 @@ class Fattura extends Document return $marca_da_bollo; } - protected function manageRigaMarcaDaBollo() + public function manageRigaMarcaDaBollo() { $riga = $this->rigaBollo; diff --git a/update/2_4_10.php b/update/2_4_10.php index 8e85adefe..306c65f1e 100644 --- a/update/2_4_10.php +++ b/update/2_4_10.php @@ -5,7 +5,7 @@ use Modules\Anagrafiche\Anagrafica; // Fix del calcolo del bollo $fatture = \Modules\Fatture\Fattura::all(); foreach ($fatture as $fattura) { - $fattura->save(); + $fattura->manageRigaMarcaDaBollo(); } // Fix per le relazioni tariffe-tecnici