2017-08-30 11:50:46 +02:00
|
|
|
|
2019-07-26 17:40:52 +02:00
|
|
|
// Aggiunta dell'ingranaggio all'unload della pagina
|
|
|
|
$(window).on("beforeunload", function () {
|
|
|
|
$("#main_loading").show();
|
|
|
|
});
|
2017-09-13 15:38:47 +02:00
|
|
|
|
2019-07-26 17:40:52 +02:00
|
|
|
// Rimozione dell'ingranaggio al caricamento completo della pagina
|
|
|
|
$(window).on("load", function () {
|
|
|
|
$("#main_loading").fadeOut();
|
|
|
|
});
|
2017-09-13 15:38:47 +02:00
|
|
|
|
2019-07-26 17:40:52 +02:00
|
|
|
// Fix multi-modal
|
|
|
|
$(document).on('hidden.bs.modal', '.modal', function () {
|
|
|
|
$('.modal:visible').length && $(document.body).addClass('modal-open');
|
|
|
|
});
|
2017-09-13 15:38:47 +02:00
|
|
|
|
2019-07-26 17:40:52 +02:00
|
|
|
$(document).ready(function () {
|
|
|
|
// Standard per i popup
|
|
|
|
toastr.options = {
|
|
|
|
"closeButton": true,
|
|
|
|
"debug": false,
|
|
|
|
"newestOnTop": false,
|
|
|
|
"progressBar": true,
|
|
|
|
"positionClass": "toast-top-right",
|
|
|
|
"preventDuplicates": true,
|
|
|
|
"onclick": null,
|
|
|
|
"showDuration": "300",
|
|
|
|
"hideDuration": "1000",
|
|
|
|
"timeOut": "12000",
|
|
|
|
"extendedTimeOut": "8000",
|
|
|
|
"showEasing": "swing",
|
|
|
|
"hideEasing": "linear",
|
|
|
|
"showMethod": "fadeIn",
|
|
|
|
"hideMethod": "fadeOut"
|
|
|
|
};
|
|
|
|
|
|
|
|
// Imposta lo standard per la conversione dei numeri
|
2019-08-02 15:58:31 +02:00
|
|
|
numeral.register('locale', 'current', {
|
2019-07-26 17:40:52 +02:00
|
|
|
delimiters: {
|
|
|
|
thousands: globals.thousands,
|
|
|
|
decimal: globals.decimals,
|
|
|
|
},
|
|
|
|
abbreviations: {
|
|
|
|
thousand: 'k',
|
|
|
|
million: 'm',
|
|
|
|
billion: 'b',
|
|
|
|
trillion: 't'
|
|
|
|
},
|
|
|
|
currency: {
|
|
|
|
symbol: '€'
|
2017-08-30 11:50:46 +02:00
|
|
|
}
|
|
|
|
});
|
2019-08-02 15:58:31 +02:00
|
|
|
numeral.locale('current');
|
2019-07-26 17:40:52 +02:00
|
|
|
numeral.defaultFormat('0,0.' + ('0').repeat(globals.cifre_decimali));
|
|
|
|
|
|
|
|
// Richiamo alla generazione di Datatables
|
|
|
|
start_datatables();
|
2017-09-13 15:38:47 +02:00
|
|
|
|
2019-07-26 17:40:52 +02:00
|
|
|
// Calendario principale
|
|
|
|
start_complete_calendar("#daterange", function (start, end) {
|
|
|
|
// Esegue il submit del periodo selezionato e ricarica la pagina
|
|
|
|
$.get(globals.rootdir + '/core.php?period_start=' + start.format('YYYY-MM-DD') + '&period_end=' + end.format('YYYY-MM-DD'), function (data) {
|
|
|
|
location.reload();
|
|
|
|
});
|
2017-08-30 11:50:46 +02:00
|
|
|
});
|
2019-07-26 17:40:52 +02:00
|
|
|
|
|
|
|
// Messaggi automatici di eliminazione
|
|
|
|
$(document).on('click', '.ask', function () {
|
|
|
|
message(this);
|
2018-11-08 16:46:26 +01:00
|
|
|
});
|
2019-07-26 17:40:52 +02:00
|
|
|
|
2019-01-10 18:41:25 +01:00
|
|
|
// Forza l'evento "blur" nei campi di testo per formattare i numeri con
|
|
|
|
// jquery inputmask prima del submit
|
|
|
|
setTimeout( function(){
|
|
|
|
$('form').on('submit', function(){
|
|
|
|
$('input').trigger('blur');
|
|
|
|
});
|
|
|
|
}, 1000 );
|
2017-08-04 16:28:16 +02:00
|
|
|
});
|