2019-07-09 18:29:40 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
|
|
|
echo '
|
|
|
|
<hr>
|
|
|
|
<div class="box box-warning">
|
|
|
|
<div class="box-header">
|
|
|
|
<h4 class="box-title">
|
|
|
|
'.tr('Periodi temporali').'
|
|
|
|
</h4>
|
|
|
|
<div class="box-tools pull-right">
|
2019-07-10 16:31:10 +02:00
|
|
|
<button class="btn btn-warning btn-xs" onclick="add_calendar()">
|
2019-07-09 18:29:40 +02:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<div class="box-body collapse in" id="calendars">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="panel panel-primary">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<h3 class="panel-title">'.tr('Prezzo medio acquisto').'</h3>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="panel-body">
|
|
|
|
<table class="table table-striped table-condensed table-bordered">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2019-07-10 16:31:10 +02:00
|
|
|
<th class="text-center">#</th>
|
2019-07-11 12:04:22 +02:00
|
|
|
<th>'.tr('Periodo').'</th>
|
2019-07-09 18:29:40 +02:00
|
|
|
<th>'.tr('Prezzo minimo').'</th>
|
2019-07-11 12:04:22 +02:00
|
|
|
<th>'.tr('Prezzo medio').'</th>
|
2019-07-09 18:29:40 +02:00
|
|
|
<th>'.tr('Prezzo massimo').'</th>
|
|
|
|
<th>'.tr('Oscillazione').'</th>
|
|
|
|
<th>'.tr('Oscillazione in %').'</th>
|
|
|
|
<th>'.tr('Andamento prezzo').'</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="prezzi_acquisto">
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2019-07-10 15:02:09 +02:00
|
|
|
<div class="panel panel-primary">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<h3 class="panel-title">'.tr('Prezzo medio vendita').'</h3>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="panel-body">
|
|
|
|
<table class="table table-striped table-condensed table-bordered">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2019-07-10 16:31:10 +02:00
|
|
|
<th>#</th>
|
2019-07-11 12:04:22 +02:00
|
|
|
<th>'.tr('Periodo').'</th>
|
2019-07-10 15:02:09 +02:00
|
|
|
<th>'.tr('Prezzo minimo').'</th>
|
2019-07-11 12:04:22 +02:00
|
|
|
<th>'.tr('Prezzo medio').'</th>
|
2019-07-10 15:02:09 +02:00
|
|
|
<th>'.tr('Prezzo massimo').'</th>
|
|
|
|
<th>'.tr('Oscillazione').'</th>
|
|
|
|
<th>'.tr('Oscillazione in %').'</th>
|
|
|
|
<th>'.tr('Andamento prezzo').'</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="prezzi_vendita">
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2019-07-11 12:04:22 +02:00
|
|
|
</div>';
|
2019-07-10 16:31:10 +02:00
|
|
|
|
2019-07-11 12:04:22 +02:00
|
|
|
$statistiche = Modules::get('Statistiche');
|
2019-07-09 18:29:40 +02:00
|
|
|
|
2019-07-11 12:04:22 +02:00
|
|
|
echo '
|
|
|
|
<script src="'.$statistiche->fileurl('js/functions.js').'"></script>
|
|
|
|
<script src="'.$statistiche->fileurl('js/manager.js').'"></script>
|
|
|
|
<script src="'.$statistiche->fileurl('js/calendar.js').'"></script>
|
|
|
|
<script src="'.$statistiche->fileurl('js/stat.js').'"></script>
|
|
|
|
<script src="'.$statistiche->fileurl('js/stats/table.js').'"></script>
|
2019-07-09 18:29:40 +02:00
|
|
|
|
2019-07-11 12:04:22 +02:00
|
|
|
<script src="'.$structure->fileurl('js/prezzo.js').'"></script>
|
2019-07-10 17:22:39 +02:00
|
|
|
|
2019-07-11 12:04:22 +02:00
|
|
|
<script>
|
|
|
|
var local_url = "'.str_replace('edit.php', '', $structure->fileurl('edit.php')).'";
|
2019-07-10 16:31:10 +02:00
|
|
|
|
2019-07-11 12:04:22 +02:00
|
|
|
function init_calendar(calendar) {
|
2019-07-10 16:31:10 +02:00
|
|
|
var prezzo_acquisto = new Prezzo(calendar, "#prezzi_acquisto", "uscita");
|
|
|
|
var prezzo_vendita = new Prezzo(calendar, "#prezzi_vendita", "entrata");
|
|
|
|
|
|
|
|
calendar.addElement(prezzo_acquisto);
|
|
|
|
calendar.addElement(prezzo_vendita);
|
2019-07-09 18:29:40 +02:00
|
|
|
}
|
2019-07-11 12:04:22 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script src="'.$statistiche->fileurl('js/init.js').'"></script>';
|