From b8b19b61d3098c1d63488b2c0215ff7c87f850d2 Mon Sep 17 00:00:00 2001 From: MatteoPistorello Date: Thu, 3 Feb 2022 10:12:39 +0100 Subject: [PATCH] Fix calcolo costi intervento --- modules/interventi/src/Components/Sessione.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/interventi/src/Components/Sessione.php b/modules/interventi/src/Components/Sessione.php index 59edb6e1c..8a17180b7 100755 --- a/modules/interventi/src/Components/Sessione.php +++ b/modules/interventi/src/Components/Sessione.php @@ -365,13 +365,13 @@ class Sessione extends Model } /** - * Restituisce la spesa (costo_unitario * qta) relativa all'elemento. + * Restituisce la spesa relativa all'elemento. * * @return float */ public function getSpesaAttribute() { - return $this->costo_manodopera; + return $this->costo_manodopera + $this->costo_viaggio + $this->costo_diritto_chiamata; } /**