2019-07-09 18:29:40 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
|
|
|
use Plugins\StatisticheArticoli\Stats;
|
|
|
|
|
2019-07-10 16:31:10 +02:00
|
|
|
$calendar_id = filter('calendar_id');
|
2020-01-08 12:30:53 +01:00
|
|
|
$direzione = filter('direzione');
|
2019-07-09 18:29:40 +02:00
|
|
|
$start = filter('start');
|
|
|
|
$end = filter('end');
|
|
|
|
|
|
|
|
$prezzi = Stats::prezzi($id_record, $start, $end, $direzione);
|
|
|
|
$prezzo_min = $prezzi['min'];
|
|
|
|
$prezzo_max = $prezzi['max'];
|
|
|
|
$prezzo_medio = $prezzi['media'];
|
|
|
|
|
|
|
|
$oscillazione = $prezzo_max['prezzo'] - $prezzo_min['prezzo'];
|
|
|
|
$oscillazione_percentuale = $oscillazione * 100 / $prezzo_medio ?: 0;
|
|
|
|
|
|
|
|
$data_min = strtotime($prezzo_min['data']);
|
|
|
|
$data_max = strtotime($prezzo_max['data']);
|
|
|
|
if ($data_min == $data_max) {
|
|
|
|
$andamento = tr('N.D.');
|
|
|
|
} elseif ($data_min < $data_max) {
|
2019-07-10 15:02:09 +02:00
|
|
|
$andamento = tr('In aumento');
|
2019-07-09 18:29:40 +02:00
|
|
|
} else {
|
2019-07-10 15:02:09 +02:00
|
|
|
$andamento = tr('In diminuzione');
|
2019-07-09 18:29:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
echo '
|
2019-07-10 16:31:10 +02:00
|
|
|
<tr id="row-'.$calendar_id.'">
|
|
|
|
<td class="text-center">'.$calendar_id.'</td>
|
2019-07-09 18:29:40 +02:00
|
|
|
<td>'.dateFormat($start).' - '.dateFormat($end).'</td>
|
2019-07-10 16:31:10 +02:00
|
|
|
<td class="text-right">'.moneyFormat($prezzo_min['prezzo']).'</td>
|
|
|
|
<td class="text-right">'.moneyFormat($prezzo_medio).'</td>
|
|
|
|
<td class="text-right">'.moneyFormat($prezzo_max['prezzo']).'</td>
|
|
|
|
<td class="text-right">'.moneyFormat($oscillazione).'</td>
|
|
|
|
<td class="text-right">'.Translator::numberToLocale($oscillazione_percentuale, '2').' %</td>
|
2019-07-09 18:29:40 +02:00
|
|
|
<td>'.$andamento.'</td>
|
|
|
|
</tr>';
|