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