2017-09-18 15:45:47 +02:00
< ? php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager : il software gestionale open source per l ' assistenza tecnica e la fatturazione
* Copyright ( C ) DevCode s . n . c .
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < https :// www . gnu . org / licenses />.
*/
2017-09-18 15:45:47 +02:00
include_once __DIR__ . '/../../core.php' ;
2019-07-05 17:26:58 +02:00
use Modules\Statistiche\Stats ;
2017-09-18 15:45:47 +02:00
echo '
2020-09-23 17:53:19 +02:00
< script src = " '.base_path().'/assets/dist/js/chartjs/Chart.min.js " ></ script > ' ;
2017-09-18 15:45:47 +02:00
$start = $_SESSION [ 'period_start' ];
$end = $_SESSION [ 'period_end' ];
echo '
2019-07-11 12:04:22 +02:00
< div class = " box box-warning " >
< div class = " box-header " >
< h4 class = " box-title " >
'.tr(' Periodi temporali ').'
</ h4 >
< div class = " box-tools pull-right " >
< button class = " btn btn-warning btn-xs " onclick = " add_calendar() " >
< i class = " fa fa-plus " ></ i > '.tr(' Aggiungi periodo ').'
</ button >
< button type = " button " class = " btn btn-box-tool " data - widget = " collapse " >
< i class = " fa fa-minus " ></ i >
</ button >
</ div >
</ div >
2020-07-31 14:25:50 +02:00
2019-07-11 12:04:22 +02:00
< div class = " box-body collapse in " id = " calendars " >
2020-07-31 14:25:50 +02:00
2019-07-11 12:04:22 +02:00
</ div >
</ div > ' ;
2017-09-18 15:45:47 +02:00
// Fatturato
echo '
< div class = " box box-success " >
< div class = " box-header with-border " >
2017-12-05 00:58:10 +01:00
< h3 class = " box-title " > '.tr(' Vendite e acquisti ').' </ h3 >
2017-09-18 15:45:47 +02:00
< div class = " box-tools pull-right " >
< button type = " button " class = " btn btn-box-tool " data - widget = " collapse " >
< i class = " fa fa-minus " ></ i >
</ button >
</ div >
</ div >
2017-12-05 01:19:40 +01:00
< canvas class = " box-body collapse in " id = " fatturato " height = " 100 " ></ canvas >
2017-09-18 15:45:47 +02:00
</ div > ' ;
2019-07-11 12:04:22 +02:00
echo '
< script src = " '. $structure->fileurl ('js/functions.js').' " ></ script >
< script src = " '. $structure->fileurl ('js/calendar.js').' " ></ script >
< script src = " '. $structure->fileurl ('js/manager.js').' " ></ script >
< script src = " '. $structure->fileurl ('js/stat.js').' " ></ script >
< script src = " '. $structure->fileurl ('js/stats/line_chart.js').' " ></ script > ' ;
2017-09-18 15:45:47 +02:00
// Script per il grafico del fatturato
echo '
< script >
2019-07-11 12:04:22 +02:00
start = moment ( " '. $start .' " );
end = moment ( " '. $end .' " );
months = get_months ( start , end );
var chart_options = {
type : " line " ,
data : {
labels : [],
datasets : [],
},
options : {
responsive : true ,
tooltips : {
callbacks : {
label : function ( tooltipItem , data ) {
var dataset = data . datasets [ tooltipItem . datasetIndex ];
var label = dataset . labels ? dataset . labels [ tooltipItem . index ] : " " ;
if ( label ) {
label += " : " ;
}
2020-07-31 14:25:50 +02:00
2019-07-11 12:04:22 +02:00
label += tooltipItem . yLabel ;
2020-07-31 14:25:50 +02:00
2019-07-11 12:04:22 +02:00
return label ;
2017-09-18 15:45:47 +02:00
}
2019-07-11 12:04:22 +02:00
}
2017-09-18 15:45:47 +02:00
},
2020-07-20 09:15:44 +02:00
elements : {
line : {
tension : 0
}
},
2020-07-09 18:50:10 +02:00
annotation : {
annotations : [{
type : " line " ,
mode : " horizontal " ,
scaleID : " y-axis-0 " ,
value : 0 ,
label : {
enabled : false ,
}
}]
},
hover : {
mode : " nearest " ,
intersect : false
},
2019-07-11 12:04:22 +02:00
scales : {
2020-07-09 18:50:10 +02:00
xAxes : [{
display : true ,
scaleLabel : {
display : true ,
2020-07-16 16:49:36 +02:00
labelString : " '.tr('Periodo').' "
2020-07-09 18:50:10 +02:00
}
}],
2019-07-11 12:04:22 +02:00
yAxes : [{
2020-07-09 18:50:10 +02:00
display : true ,
scaleLabel : {
display : true ,
2020-07-16 16:49:36 +02:00
labelString : " '.tr('Andamento').' "
2020-07-09 18:50:10 +02:00
},
2019-07-11 12:04:22 +02:00
ticks : {
// Include a dollar sign in the ticks
callback : function ( value , index , values ) {
2020-05-15 18:51:27 +02:00
return \ '' . html_entity_decode ( currency ()) . ' \ ' + value ;
2019-07-11 12:04:22 +02:00
}
}
}]
},
}
};
// Inzializzazione manager
var info = {
url : " '.str_replace('edit.php', '', $structure->fileurl ('edit.php')).' " ,
id_module : globals . id_module ,
id_record : globals . id_record ,
start_date : globals . start_date ,
end_date : globals . end_date ,
}
var manager = new Manager ( info );
var chart_fatturato , chart_acquisti ;
2020-07-31 14:25:50 +02:00
$ ( document ) . ready ( function () {
2019-07-11 12:04:22 +02:00
var fatturato_canvas = document . getElementById ( " fatturato " ) . getContext ( " 2d " );
//var acquisti_canvas = document.getElementById("acquisti").getContext("2d");
2020-07-31 14:25:50 +02:00
2019-07-11 12:04:22 +02:00
chart_fatturato = new Chart ( fatturato_canvas , chart_options );
//chart_acquisti = new Chart(fatturato_canvas, chart_options);
2020-07-31 14:25:50 +02:00
2019-07-11 12:04:22 +02:00
add_calendar ();
2017-09-18 15:45:47 +02:00
});
2019-07-11 12:04:22 +02:00
function init_calendar ( calendar ) {
var fatturato = new LineChart ( calendar , " actions.php " , { op : " fatturato " }, chart_fatturato );
var acquisti = new LineChart ( calendar , " actions.php " , { op : " acquisti " }, chart_fatturato );
calendar . addElement ( fatturato );
calendar . addElement ( acquisti );
}
2017-09-18 15:45:47 +02:00
</ script > ' ;
// Clienti top
2020-09-10 18:39:44 +02:00
$clienti = $dbo -> fetchArray ( 'SELECT SUM(co_righe_documenti.subtotale - co_righe_documenti.sconto) AS totale, (SELECT COUNT(*) FROM co_documenti WHERE co_documenti.idanagrafica =an_anagrafiche.idanagrafica AND co_documenti.data BETWEEN ' . prepare ( $start ) . ' AND ' . prepare ( $end ) . " ) AS qta, an_anagrafiche.idanagrafica, an_anagrafiche.ragione_sociale FROM co_documenti INNER JOIN co_tipidocumento ON co_documenti.idtipodocumento=co_tipidocumento.id INNER JOIN co_righe_documenti ON co_righe_documenti.iddocumento=co_documenti.id INNER JOIN an_anagrafiche ON an_anagrafiche.idanagrafica=co_documenti.idanagrafica WHERE co_tipidocumento.dir='entrata' AND co_documenti.data BETWEEN " . prepare ( $start ) . ' AND ' . prepare ( $end ) . ' GROUP BY an_anagrafiche.idanagrafica ORDER BY SUM(subtotale - co_righe_documenti.sconto) DESC LIMIT 20' );
2017-09-18 15:45:47 +02:00
2018-02-10 18:30:16 +01:00
$totale = $dbo -> fetchArray ( " SELECT SUM(co_righe_documenti.subtotale - co_righe_documenti.sconto) AS totale FROM co_documenti INNER JOIN co_tipidocumento ON co_documenti.idtipodocumento=co_tipidocumento.id INNER JOIN co_righe_documenti ON co_righe_documenti.iddocumento=co_documenti.id WHERE co_tipidocumento.dir='entrata' AND co_documenti.data BETWEEN " . prepare ( $start ) . ' AND ' . prepare ( $end ));
2017-09-18 18:11:19 +02:00
2017-09-18 15:45:47 +02:00
echo '
< div class = " row " >
2018-02-20 16:46:23 +01:00
< div class = " col-md-6 " >
2017-09-18 15:45:47 +02:00
< div class = " box box-warning " >
< div class = " box-header with-border " >
2019-07-01 16:36:35 +02:00
< h3 class = " box-title " > '.tr(' I 20 clienti TOP ').' </ h3 >< span class = " tip " title = " '.tr('Valori iva esclusa').' " > < i class = " fa fa-question-circle-o " aria - hidden = " true " ></ i ></ span >
2017-09-18 15:45:47 +02:00
< div class = " box-tools pull-right " >
< button type = " button " class = " btn btn-box-tool " data - widget = " collapse " >
< i class = " fa fa-minus " ></ i >
</ button >
</ div >
</ div >
< div class = " box-body collapse in " > ' ;
if ( ! empty ( $clienti )) {
echo '
2017-09-18 18:11:19 +02:00
< table class = " table table-striped " >
< tr >
2020-04-07 16:21:38 +02:00
< th > '.tr(' Ragione sociale ').' </ th >
2017-09-18 18:11:19 +02:00
< th class = " text-center " > '.tr(' Num . fatture ').' </ th >
2020-04-07 16:21:38 +02:00
< th class = " text-right " width = " 120 " > '.tr(' Totale ').' </ th >
< th class = " text-right " width = " 120 " > '.tr(' Percentuale ').' < span class = " tip " title = " '.tr('Incidenza sul fatturato').' " >& nbsp ; < i class = " fa fa-question-circle-o " aria - hidden = " true " ></ i ></ span ></ th >
2017-09-18 18:11:19 +02:00
</ tr > ' ;
2017-09-18 15:45:47 +02:00
foreach ( $clienti as $cliente ) {
echo '
2017-09-18 18:11:19 +02:00
< tr >
< td > '.Modules::link(' Anagrafiche ', $cliente[' idanagrafica '], $cliente[' ragione_sociale ']).' </ td >
2020-04-07 16:21:38 +02:00
< td class = " text-right " > '.intval($cliente[' qta ']).' </ td >
< td class = " text-right " > '.moneyFormat($cliente[' totale '], 2).' </ td >
< td class = " text-right " > '.Translator::numberToLocale($cliente[' totale '] * 100 / $totale[0][' totale '], 2).' %</ td >
2017-09-18 18:11:19 +02:00
</ tr > ' ;
2017-09-18 15:45:47 +02:00
}
echo '
2017-09-18 18:11:19 +02:00
</ table > ' ;
2017-09-18 15:45:47 +02:00
} else {
echo '
2019-06-26 11:42:11 +02:00
< p > '.tr(' Nessuna vendita ').' ...</ p > ' ;
2017-09-18 15:45:47 +02:00
}
echo '
</ div >
</ div >
</ div > ' ;
// Articoli più venduti
2019-07-01 16:36:35 +02:00
$articoli = $dbo -> fetchArray ( " SELECT SUM(co_righe_documenti.qta) AS qta, SUM(co_righe_documenti.subtotale - co_righe_documenti.sconto) AS totale, mg_articoli.id, mg_articoli.codice, mg_articoli.descrizione, mg_articoli.um FROM co_documenti INNER JOIN co_tipidocumento ON co_documenti.idtipodocumento=co_tipidocumento.id INNER JOIN co_righe_documenti ON co_righe_documenti.iddocumento=co_documenti.id INNER JOIN mg_articoli ON mg_articoli.id=co_righe_documenti.idarticolo WHERE co_tipidocumento.dir='entrata' AND co_documenti.data BETWEEN " . prepare ( $start ) . ' AND ' . prepare ( $end ) . ' GROUP BY co_righe_documenti.idarticolo ORDER BY SUM(co_righe_documenti.qta) DESC LIMIT 20' );
2019-06-13 15:57:55 +02:00
2019-07-01 16:36:35 +02:00
$totale = $dbo -> fetchArray ( " SELECT SUM(co_righe_documenti.qta) AS totale_qta, SUM(co_righe_documenti.subtotale - co_righe_documenti.sconto) AS totale FROM co_documenti INNER JOIN co_tipidocumento ON co_documenti.idtipodocumento=co_tipidocumento.id INNER JOIN co_righe_documenti ON co_righe_documenti.iddocumento=co_documenti.id INNER JOIN mg_articoli ON mg_articoli.id=co_righe_documenti.idarticolo WHERE co_tipidocumento.dir='entrata' AND co_documenti.data BETWEEN " . prepare ( $start ) . ' AND ' . prepare ( $end ));
2017-09-18 15:45:47 +02:00
echo '
2018-02-20 16:46:23 +01:00
< div class = " col-md-6 " >
2017-09-18 15:45:47 +02:00
< div class = " box box-danger " >
< div class = " box-header with-border " >
2019-07-01 16:36:35 +02:00
< h3 class = " box-title " > '.tr(' I 20 articoli più venduti ').' </ h3 >< span class = " tip " title = " '.tr('Valori iva esclusa').' " > < i class = " fa fa-question-circle-o " aria - hidden = " true " ></ i ></ span >
2017-09-18 15:45:47 +02:00
< div class = " box-tools pull-right " >
< button type = " button " class = " btn btn-box-tool " data - widget = " collapse " >
< i class = " fa fa-minus " ></ i >
</ button >
</ div >
</ div >
< div class = " box-body collapse in " > ' ;
if ( ! empty ( $articoli )) {
echo '
2017-09-18 18:11:19 +02:00
< table class = " table table-striped " >
< tr >
2020-04-07 16:21:38 +02:00
< th > '.tr(' Articolo ').' </ th >
< th class = " text-right " width = " 120 " > '.tr(' Q . tà ').' </ th >
< th class = " text-right " width = " 120 " > '.tr(' Percentuale ').' < span class = " tip " title = " '.tr('Incidenza sul numero di articoli venduti').' " > < i class = " fa fa-question-circle-o " aria - hidden = " true " ></ i ></ span ></ th >
< th class = " text-right " width = " 120 " > '.tr(' Totale ').' </ th >
2017-09-18 18:11:19 +02:00
</ tr > ' ;
2017-09-18 15:45:47 +02:00
foreach ( $articoli as $articolo ) {
echo '
2017-09-18 18:11:19 +02:00
< tr >
2020-04-07 16:21:38 +02:00
< td > '.Modules::link(' Articoli ', $articolo[' id '], $articolo[' codice '].' - '.$articolo[' descrizione ']).' </ td >
< td class = " text-right " > '.Translator::numberToLocale($articolo[' qta '], ' qta ').' '.$articolo[' um '].' </ td >
< td class = " text-right " > '.Translator::numberToLocale($articolo[' qta '] * 100 / $totale[0][' totale_qta '], 2).' %</ td >
< td class = " text-right " > '.moneyFormat($articolo[' totale '], 2).' </ td >
2017-09-18 18:11:19 +02:00
</ tr > ' ;
2017-09-18 15:45:47 +02:00
}
echo '
2017-09-18 18:11:19 +02:00
</ table > ' ;
2017-09-18 15:45:47 +02:00
} else {
echo '
< p > '.tr(' Nessun articolo è stato venduto ').' ...</ p > ' ;
}
echo '
</ div >
</ div >
</ div >
</ div > ' ;
2017-12-05 01:19:40 +01:00
// Interventi per tipologia
$tipi = $dbo -> fetchArray ( 'SELECT * FROM `in_tipiintervento`' );
2017-09-18 15:45:47 +02:00
$dataset = '' ;
2017-12-05 01:19:40 +01:00
foreach ( $tipi as $tipo ) {
2019-07-11 12:04:22 +02:00
$interventi = $dbo -> fetchArray ( 'SELECT COUNT(*) AS result, YEAR(in_interventi.data_richiesta) AS year, MONTH(in_interventi.data_richiesta) AS month FROM in_interventi WHERE in_interventi.idtipointervento = ' . prepare ( $tipo [ 'idtipointervento' ]) . ' AND in_interventi.data_richiesta BETWEEN ' . prepare ( $start ) . ' AND ' . prepare ( $end ) . ' GROUP BY YEAR(in_interventi.data_richiesta), MONTH(in_interventi.data_richiesta) ORDER BY YEAR(in_interventi.data_richiesta) ASC, MONTH(in_interventi.data_richiesta) ASC' );
2017-09-18 15:45:47 +02:00
2019-07-05 17:26:58 +02:00
$interventi = Stats :: monthly ( $interventi , $start , $end );
2017-09-18 15:45:47 +02:00
2017-12-05 01:19:40 +01:00
//Random color
2018-02-18 19:53:23 +01:00
$background = '#' . dechex ( rand ( 256 , 16777215 ));
2017-12-05 01:19:40 +01:00
2017-09-18 15:45:47 +02:00
$dataset .= ' {
2017-12-05 01:19:40 +01:00
label : " '. $tipo['descrizione'] .' " ,
backgroundColor : " '. $background .' " ,
2017-09-18 15:45:47 +02:00
data : [
2019-07-11 12:04:22 +02:00
'.implode(' , ', array_column($interventi, ' result ')).'
2017-09-18 15:45:47 +02:00
]
}, ' ;
}
echo '
< div class = " box box-info " >
< div class = " box-header with-border " >
2017-12-05 01:19:40 +01:00
< h3 class = " box-title " > '.tr(' Interventi per tipologia ').' </ h3 >
2017-09-18 15:45:47 +02:00
< div class = " box-tools pull-right " >
< button type = " button " class = " btn btn-box-tool " data - widget = " collapse " >
< i class = " fa fa-minus " ></ i >
</ button >
</ div >
</ div >
2017-12-05 01:19:40 +01:00
< canvas class = " box-body collapse in " id = " interventi " height = " 100 " ></ canvas >
2017-09-18 15:45:47 +02:00
</ div > ' ;
2020-05-15 18:51:27 +02:00
// Script per il grafico degli interventi per tipologia
2017-09-18 15:45:47 +02:00
echo '
< script >
$ ( document ) . ready ( function () {
new Chart ( document . getElementById ( " interventi " ) . getContext ( " 2d " ), {
type : " bar " ,
data : {
labels : months ,
datasets : [
'.$dataset.'
]
},
options : {
responsive : true ,
legend : {
position : " bottom " ,
},
}
});
});
</ script > ' ;