From bd23da702f987464a06d47c87ee563292f59e3c4 Mon Sep 17 00:00:00 2001 From: loviuz Date: Sun, 14 Apr 2019 00:21:35 +0200 Subject: [PATCH] Fix #547 --- modules/anagrafiche/plugins/statistiche.php | 3 +-- modules/preventivi/modutil.php | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/anagrafiche/plugins/statistiche.php b/modules/anagrafiche/plugins/statistiche.php index a67bbc17a..d6c6dcad9 100644 --- a/modules/anagrafiche/plugins/statistiche.php +++ b/modules/anagrafiche/plugins/statistiche.php @@ -48,12 +48,11 @@ echo ' '; // Preventivi -$rsi = $dbo->fetchArray('SELECT co_preventivi.id AS idpreventivo, data_accettazione AS data, ragione_sociale, budget FROM co_preventivi INNER JOIN an_anagrafiche ON co_preventivi.idanagrafica=an_anagrafiche.idanagrafica WHERE co_preventivi.idanagrafica='.prepare($id_record).' AND default_revision = 1'); +$rsi = $dbo->fetchArray('SELECT co_preventivi.id AS idpreventivo, data_accettazione AS data, ragione_sociale FROM co_preventivi INNER JOIN an_anagrafiche ON co_preventivi.idanagrafica=an_anagrafiche.idanagrafica WHERE co_preventivi.idanagrafica='.prepare($id_record).' AND default_revision = 1'); $totale_preventivi = 0; $data_start = strtotime('now'); for ($i = 0; $i < count($rsi); ++$i) { - //$totale_preventivi += $rsi[$i]['budget']; $totale_preventivi += get_imponibile_preventivo($rsi[$i]['idpreventivo']); // Calcolo data piĆ¹ bassa per la ricerca if (strtotime($rsi[$i]['data']) < $data_start) { diff --git a/modules/preventivi/modutil.php b/modules/preventivi/modutil.php index d17ea6230..d08ff67f1 100644 --- a/modules/preventivi/modutil.php +++ b/modules/preventivi/modutil.php @@ -29,7 +29,7 @@ function get_imponibile_preventivo($idpreventivo) { $preventivo = Preventivo::find($idpreventivo); - return $preventivo->imponibile; + return $preventivo->imponibile_scontato; } /**