2019-09-16 10:01:01 +02:00
|
|
|
function start_local_datatables() {
|
2019-07-26 17:40:52 +02:00
|
|
|
$('.datatables').each(function () {
|
|
|
|
if (!$.fn.DataTable.isDataTable($(this))) {
|
|
|
|
$(this).DataTable({
|
2019-08-02 15:58:31 +02:00
|
|
|
language: globals.translations.datatables,
|
2019-07-26 17:40:52 +02:00
|
|
|
retrieve: true,
|
|
|
|
ordering: true,
|
|
|
|
searching: true,
|
|
|
|
paging: false,
|
|
|
|
order: [],
|
|
|
|
lengthChange: false,
|
|
|
|
scrollY: "70vh",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Datatable
|
|
|
|
function start_datatables() {
|
|
|
|
start_local_datatables();
|
|
|
|
|
|
|
|
$('.main-records').each(function () {
|
|
|
|
var $this = $(this);
|
|
|
|
|
|
|
|
// Controlla che la tabella non sia già inizializzata
|
|
|
|
if (!$.fn.DataTable.isDataTable('#' + $this.attr('id'))) {
|
|
|
|
var id_module = $this.data('idmodule');
|
|
|
|
var id_plugin = $this.data('idplugin');
|
|
|
|
var id_parent = $this.data('idparent');
|
|
|
|
|
|
|
|
// Parametri di ricerca da url o sessione
|
2019-08-02 13:21:21 +02:00
|
|
|
var search = getTableSearch();
|
2019-07-26 17:40:52 +02:00
|
|
|
|
2019-10-22 17:09:43 +02:00
|
|
|
var column_search = [];
|
2019-07-26 17:40:52 +02:00
|
|
|
$this.find("th").each(function () {
|
|
|
|
var id = $(this).attr('id').replace("th_", "");
|
2019-10-22 17:09:43 +02:00
|
|
|
var single_value = search["search_" + id] ? search["search_" + id] : "";
|
2019-07-26 17:40:52 +02:00
|
|
|
|
2019-10-22 17:09:43 +02:00
|
|
|
column_search.push({
|
|
|
|
"sSearch": single_value,
|
2019-07-26 17:40:52 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
var tempo_attesa_ricerche = (globals.tempo_attesa_ricerche * 1000);
|
|
|
|
|
2019-08-03 09:17:38 +02:00
|
|
|
$this.on('preInit.dt', function (ev, settings) {
|
2020-07-09 09:02:40 +02:00
|
|
|
$('#mini-loader').show();
|
2019-08-03 09:17:38 +02:00
|
|
|
});
|
|
|
|
|
2019-07-26 17:40:52 +02:00
|
|
|
var table = $this.DataTable({
|
2019-08-02 15:58:31 +02:00
|
|
|
language: globals.translations.datatables,
|
2019-07-26 17:40:52 +02:00
|
|
|
autoWidth: true,
|
|
|
|
dom: "ti",
|
|
|
|
serverSide: true,
|
|
|
|
deferRender: true,
|
|
|
|
ordering: true,
|
|
|
|
searching: true,
|
|
|
|
aaSorting: [],
|
2019-10-22 17:09:43 +02:00
|
|
|
aoSearchCols: column_search,
|
2019-07-26 17:40:52 +02:00
|
|
|
scrollY: "60vh",
|
|
|
|
scrollX: '100%',
|
|
|
|
retrieve: true,
|
|
|
|
stateSave: true,
|
2020-07-08 21:12:16 +02:00
|
|
|
rowId: 'id',
|
2019-07-26 17:40:52 +02:00
|
|
|
stateSaveCallback: function (settings, data) {
|
|
|
|
sessionStorage.setItem('DataTables_' + id_module + '-' + id_plugin + '-' + id_parent, JSON.stringify(data));
|
|
|
|
},
|
|
|
|
stateLoadCallback: function (settings) {
|
|
|
|
return JSON.parse(sessionStorage.getItem('DataTables_' + id_module + '-' + id_plugin + '-' + id_parent));
|
|
|
|
},
|
|
|
|
columnDefs: [{
|
|
|
|
searchable: false,
|
|
|
|
orderable: false,
|
|
|
|
width: '1%',
|
|
|
|
className: 'select-checkbox',
|
|
|
|
targets: 0
|
|
|
|
}],
|
|
|
|
select: {
|
|
|
|
style: 'multi',
|
|
|
|
selector: 'td:first-child'
|
|
|
|
},
|
2019-10-22 17:09:43 +02:00
|
|
|
buttons: [
|
|
|
|
{
|
|
|
|
extend: 'csv',
|
|
|
|
fieldSeparator: ";",
|
|
|
|
exportOptions: {
|
|
|
|
modifier: {
|
|
|
|
selected: true
|
2020-04-17 13:54:44 +02:00
|
|
|
},
|
|
|
|
format: {
|
|
|
|
body: function (data, row, column, node) {
|
|
|
|
data = $('<p>' + data + '</p>').text();
|
|
|
|
data_edit = data.replace('.', ''); // Rimozione punto delle migliaia
|
|
|
|
|
|
|
|
return data_edit.match(/^[0-9,]+$/) ? data_edit : data;
|
|
|
|
}
|
2019-10-22 17:09:43 +02:00
|
|
|
}
|
2019-07-26 17:40:52 +02:00
|
|
|
}
|
2019-10-22 17:09:43 +02:00
|
|
|
},
|
2019-07-26 17:40:52 +02:00
|
|
|
{
|
|
|
|
extend: 'copy',
|
|
|
|
exportOptions: {
|
|
|
|
modifier: {
|
|
|
|
selected: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
extend: 'print',
|
|
|
|
autoPrint: true,
|
|
|
|
customize: function (win) {
|
|
|
|
$(win.document.body)
|
|
|
|
.css('font-size', '10pt')
|
|
|
|
.append(
|
|
|
|
'<table class="main-records table table-condensed table-bordered dataTable"><tfoot><tr><td></td><td class="pull-right">' + $('#summable').text() + '</td><td></td></tr></tfoot></table>'
|
|
|
|
);
|
|
|
|
$(win.document.body).find('table')
|
|
|
|
.addClass('compact')
|
|
|
|
.css('font-size', 'inherit');
|
|
|
|
$(win.document.body).find('td:first-child')
|
|
|
|
.addClass('hide');
|
|
|
|
$(win.document.body).find('th:first-child')
|
|
|
|
.addClass('hide');
|
|
|
|
},
|
|
|
|
exportOptions: {
|
|
|
|
modifier: {
|
|
|
|
selected: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
extend: 'excel',
|
|
|
|
exportOptions: {
|
|
|
|
modifier: {
|
|
|
|
selected: true
|
|
|
|
},
|
|
|
|
format: {
|
2019-09-16 10:01:01 +02:00
|
|
|
body: function (data, row, column, node) {
|
2019-07-26 17:40:52 +02:00
|
|
|
data = $('<p>' + data + '</p>').text();
|
2019-08-02 16:53:37 +02:00
|
|
|
data_edit = data.replace('.', ''); // Fix specifico per i numeri italiani
|
|
|
|
data_edit = data_edit.replace(',', '.');
|
2019-07-26 17:40:52 +02:00
|
|
|
|
2019-08-02 16:53:37 +02:00
|
|
|
return data_edit.match(/^[0-9\.]+$/) ? data_edit : data;
|
2019-07-26 17:40:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
extend: 'pdf',
|
|
|
|
exportOptions: {
|
|
|
|
modifier: {
|
|
|
|
selected: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
],
|
|
|
|
scroller: {
|
|
|
|
loadingIndicator: true,
|
|
|
|
displayBuffer: globals.dataload_page_buffer,
|
|
|
|
},
|
|
|
|
ajax: {
|
|
|
|
url: "ajax_dataload.php?id_module=" + id_module + "&id_plugin=" + id_plugin + "&id_parent=" + id_parent,
|
|
|
|
type: 'GET',
|
2020-07-08 21:12:16 +02:00
|
|
|
dataSrc: "data",
|
2019-07-26 17:40:52 +02:00
|
|
|
},
|
|
|
|
initComplete: function (settings) {
|
|
|
|
var api = this.api();
|
2019-10-22 17:09:43 +02:00
|
|
|
var search = getTableSearch();
|
2019-07-26 17:40:52 +02:00
|
|
|
|
|
|
|
api.columns('.search').every(function () {
|
|
|
|
var column = this;
|
2019-10-22 17:09:43 +02:00
|
|
|
|
|
|
|
// Valore predefinito della ricerca
|
|
|
|
var tempo;
|
|
|
|
var header = $(column.header());
|
|
|
|
var name = header.attr('id').replace('th_', '');
|
|
|
|
|
|
|
|
var value = search['search_' + name] ? search['search_' + name] : '';
|
|
|
|
|
2020-06-30 17:38:19 +02:00
|
|
|
$('<br><input type="text" style="width:100%" class="form-control' + (value ? ' input-searching' : '') + '" placeholder="' + globals.translations.filter + '..." value="' + value.replace(/"/g, '"') + '"><i class="deleteicon fa fa-times fa-2x' + (value ? '' : ' hide') + '"></i>')
|
2019-07-26 17:40:52 +02:00
|
|
|
.appendTo(column.header())
|
|
|
|
.on('keyup', function (e) {
|
|
|
|
clearInterval(tempo);
|
|
|
|
|
|
|
|
// Fix del pulsante di pulizia ricerca e del messaggio sulla ricerca lenta
|
|
|
|
if (e.which != 9) {
|
|
|
|
if (!$(this).val()) {
|
|
|
|
if ($(this).parent().data("slow") != undefined) $("#slow").remove();
|
|
|
|
$(this).removeClass('input-searching');
|
|
|
|
$(this).next('.deleteicon').addClass('hide');
|
|
|
|
} else {
|
|
|
|
if ($(this).parent().data("slow") != undefined && $("#slow").length == 0) {
|
|
|
|
$("#" + $this.attr('id') + "_info").parent().append('<span class="text-danger" id="slow"><i class="fa fa-refresh fa-spin"></i> ' + globals.translations.long + '</span>');
|
|
|
|
}
|
|
|
|
$(this).addClass('input-searching');
|
|
|
|
$(this).next('.deleteicon').removeClass('hide');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function start_search(module_id, field, search_value) {
|
|
|
|
searchTable(module_id, field, search_value);
|
|
|
|
column.search(search_value).draw();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Impostazione delle sessioni per le ricerche del modulo e del campo specificati
|
|
|
|
var module_id = $this.data('idmodule'); //+ "-" + $this.data('idplugin');
|
|
|
|
var field = $(this).parent().attr('id').replace('th_', '');
|
|
|
|
var value = $(this).val();
|
|
|
|
if (e.keyCode == 13 || $(this).val() == '') {
|
|
|
|
start_search(module_id, field, value);
|
|
|
|
} else {
|
|
|
|
tempo = window.setTimeout(start_search, tempo_attesa_ricerche, module_id, field, value);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Disabilito l'ordinamento alla pressione del tasto invio sull'<input>
|
|
|
|
$("thead input, .search").on('keypress', function (e) {
|
|
|
|
stopTableSorting(e);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Disabilito l'ordinamento al click sull'<input>
|
|
|
|
$("thead input, .deleteicon").click(function (e) {
|
|
|
|
stopTableSorting(e);
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.deleteicon').on("click", function (e) {
|
|
|
|
resetTableSearch($(this).parent().attr("id").replace("th_", ""));
|
|
|
|
});
|
|
|
|
},
|
|
|
|
drawCallback: function (settings) {
|
|
|
|
var api = new $.fn.dataTable.Api(settings);
|
|
|
|
|
|
|
|
$(".dataTables_sizing .deleteicon").addClass('hide');
|
|
|
|
|
|
|
|
$("[data-background]").each(function () {
|
|
|
|
$(this).parent().css("background", $(this).data("background"));
|
|
|
|
});
|
|
|
|
|
|
|
|
$("[data-color]").each(function () {
|
|
|
|
$(this).parent().css("color", $(this).data("color"));
|
|
|
|
});
|
|
|
|
|
|
|
|
$("[data-link]").each(function () {
|
|
|
|
var $link = $(this);
|
|
|
|
$(this).parent().not('.bound').addClass('bound').click(function (event) {
|
2020-07-08 21:12:16 +02:00
|
|
|
if ($link.data('type') === 'dialog') {
|
2019-07-26 17:40:52 +02:00
|
|
|
launch_modal(globals.translations.details, $link.data('link'));
|
|
|
|
} else {
|
|
|
|
openLink(event, $link.data('link'))
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$(this).parent().addClass("clickable");
|
|
|
|
});
|
|
|
|
|
2020-07-08 21:12:16 +02:00
|
|
|
// Reimposto il flag sulle righe ricaricate selezionate in precedenza
|
|
|
|
var selected = $this.data('selected') ? $this.data('selected').split(';') : [];
|
|
|
|
table.rows().every(function (rowIdx) {
|
|
|
|
if ($.inArray(this.id().toString(), selected) !== -1) {
|
|
|
|
table.row(':eq(' + rowIdx + ')', {
|
|
|
|
page: 'current'
|
|
|
|
}).select();
|
2019-07-26 17:40:52 +02:00
|
|
|
}
|
2020-07-08 21:12:16 +02:00
|
|
|
});
|
2019-07-26 17:40:52 +02:00
|
|
|
},
|
|
|
|
footerCallback: function (row, data, start, end, display) {
|
|
|
|
var i = -1;
|
2020-07-08 21:12:16 +02:00
|
|
|
var json = this.api().ajax.json();
|
|
|
|
|
2019-07-26 17:40:52 +02:00
|
|
|
this.api().columns().every(function () {
|
2020-07-08 21:12:16 +02:00
|
|
|
if (json.summable[i] !== undefined) {
|
|
|
|
$(this.footer()).addClass("text-right")
|
|
|
|
.attr("id", "summable")
|
|
|
|
.html(json.summable[i]);
|
2019-07-26 17:40:52 +02:00
|
|
|
}
|
2020-07-08 21:12:16 +02:00
|
|
|
|
2019-07-26 17:40:52 +02:00
|
|
|
i++;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
table.on('processing.dt', function (e, settings, processing) {
|
|
|
|
if (processing) {
|
|
|
|
$('#mini-loader').show();
|
|
|
|
} else {
|
|
|
|
$('#mini-loader').hide();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function stopTableSorting(e) {
|
|
|
|
if (!e) var e = window.event;
|
|
|
|
e.cancelBubble = true;
|
|
|
|
if (e.stopPropagation) e.stopPropagation();
|
|
|
|
}
|
|
|
|
|
|
|
|
function resetTableSearch(type) {
|
|
|
|
if (type == null) $('[id^=th_] input').val('').trigger('keyup');
|
|
|
|
else $('[id^=th_' + type + '] input').val('').trigger('keyup');
|
|
|
|
}
|
|
|
|
|
|
|
|
function reset(type) {
|
|
|
|
return resetTableSearch(type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sostituisce i caratteri speciali per la ricerca attraverso le tabelle Datatables.
|
|
|
|
*
|
|
|
|
* @param string field
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function searchFieldName(field) {
|
|
|
|
return field.replace(' ', '-').replace('.', '');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Salva nella sessione la ricerca per le tabelle Datatables.
|
|
|
|
*
|
|
|
|
* @param int module_id
|
|
|
|
* @param string field
|
|
|
|
* @param mixed value
|
|
|
|
*/
|
|
|
|
function searchTable(module_id, field, value) {
|
|
|
|
session_set('module_' + module_id + ',' + 'search_' + searchFieldName(field), value, 0);
|
|
|
|
}
|
2019-08-02 13:21:21 +02:00
|
|
|
|
|
|
|
function getTableSearch() {
|
|
|
|
// Parametri di ricerca da url o sessione
|
|
|
|
var search = getUrlVars();
|
|
|
|
|
|
|
|
globals.search.forEach(function (value, index, array) {
|
2020-07-09 09:02:40 +02:00
|
|
|
if (search[array[index]] === undefined) {
|
2019-08-02 13:21:21 +02:00
|
|
|
search[array[index]] = array[value];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return search;
|
|
|
|
}
|
2020-07-08 21:12:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Restituisce un oggetto che permette di gestire le tabelle DataTables.
|
|
|
|
*
|
|
|
|
* @param selector
|
|
|
|
*/
|
|
|
|
function getTable(selector) {
|
|
|
|
var table = $(selector);
|
|
|
|
|
2020-07-09 09:02:40 +02:00
|
|
|
var selected = new Map();
|
|
|
|
var selected_ids = table.data('selected') ? table.data('selected').split(';') : [];
|
2020-07-16 17:31:30 +02:00
|
|
|
selected_ids.forEach(function (item, index) {
|
2020-07-09 09:02:40 +02:00
|
|
|
selected.set(item, true);
|
|
|
|
});
|
2020-07-08 21:12:16 +02:00
|
|
|
|
|
|
|
return {
|
|
|
|
table: table,
|
2020-07-09 09:02:40 +02:00
|
|
|
|
|
|
|
id_module: table.data('idmodule'),
|
|
|
|
id_plugin: table.data('idplugin'),
|
|
|
|
|
2020-07-16 17:31:30 +02:00
|
|
|
initDatatable: function () {
|
2020-07-09 09:02:40 +02:00
|
|
|
if (table.hasClass('datatables')) {
|
|
|
|
start_local_datatables();
|
|
|
|
} else {
|
|
|
|
start_datatables();
|
|
|
|
}
|
2020-07-08 21:12:16 +02:00
|
|
|
},
|
2020-07-09 09:02:40 +02:00
|
|
|
datatable: table.DataTable(),
|
|
|
|
|
|
|
|
// Funzioni per i contenitori relativi alla tabella
|
2020-07-08 21:12:16 +02:00
|
|
|
getButtonsContainer: function () {
|
|
|
|
return $('.row[data-target="' + table.attr('id') + '"]').find('.table-btn');
|
|
|
|
},
|
|
|
|
getActionsContainer: function () {
|
|
|
|
return $('.row[data-target="' + table.attr('id') + '"]').find('.bulk-container');
|
2020-07-09 09:02:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// Gestione delle righe selezionate
|
|
|
|
selected: selected,
|
|
|
|
getSelectedRows: function () {
|
|
|
|
return Array.from(selected.keys());
|
|
|
|
},
|
|
|
|
saveSelectedRows: function () {
|
|
|
|
var selected_rows = this.getSelectedRows();
|
|
|
|
table.data('selected', selected_rows.join(';'));
|
|
|
|
|
|
|
|
var bulk_container = this.getActionsContainer();
|
|
|
|
var btn_container = this.getButtonsContainer();
|
|
|
|
if (selected_rows.length > 0) {
|
|
|
|
bulk_container.removeClass('disabled').attr('disabled', false);
|
|
|
|
btn_container.removeClass('disabled').attr('disabled', false);
|
|
|
|
} else {
|
|
|
|
bulk_container.addClass('disabled').attr('disabled', true);
|
|
|
|
btn_container.addClass('disabled').attr('disabled', true);
|
|
|
|
}
|
2020-07-16 17:31:30 +02:00
|
|
|
|
|
|
|
// Aggiornamento del footer nel caso sia richiesto
|
|
|
|
if (globals.restrict_summables_to_selected){
|
|
|
|
this.updateSelectedFooter();
|
|
|
|
}
|
2020-07-09 09:02:40 +02:00
|
|
|
},
|
|
|
|
addSelectedRows: function (row_ids) {
|
|
|
|
row_ids = Array.isArray(row_ids) ? row_ids : [row_ids];
|
2020-07-16 17:31:30 +02:00
|
|
|
row_ids.forEach(function (item, index) {
|
2020-07-09 09:02:40 +02:00
|
|
|
selected.set(item, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
this.saveSelectedRows();
|
|
|
|
},
|
|
|
|
removeSelectedRows: function (row_ids) {
|
|
|
|
row_ids = Array.isArray(row_ids) ? row_ids : [row_ids];
|
2020-07-16 17:31:30 +02:00
|
|
|
row_ids.forEach(function (item, index) {
|
2020-07-09 09:02:40 +02:00
|
|
|
selected.delete(item);
|
|
|
|
});
|
|
|
|
|
|
|
|
this.saveSelectedRows();
|
|
|
|
},
|
|
|
|
clearSelectedRows: function () {
|
|
|
|
selected.clear();
|
|
|
|
this.saveSelectedRows();
|
|
|
|
},
|
2020-07-16 17:31:30 +02:00
|
|
|
|
|
|
|
// Aggiornamento dei campi summable
|
|
|
|
updateSelectedFooter: function () {
|
|
|
|
let datatable = this.datatable;
|
|
|
|
let ids = this.getSelectedRows();
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: globals.rootdir + "/ajax.php",
|
|
|
|
type: "POST",
|
|
|
|
dataType: "json",
|
|
|
|
data: {
|
|
|
|
id_module: this.id_module,
|
|
|
|
id_plugin: this.id_plugin,
|
|
|
|
op: "summable-results",
|
|
|
|
ids: ids,
|
|
|
|
},
|
|
|
|
success: function (response) {
|
|
|
|
for (let [column, value] of Object.entries(response)) {
|
|
|
|
let index = parseInt(column) + 1;
|
|
|
|
let sel = datatable.column(index).footer();
|
|
|
|
$(sel).addClass("text-right")
|
|
|
|
.attr("id", "summable")
|
|
|
|
.html(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2020-07-08 21:12:16 +02:00
|
|
|
};
|
|
|
|
}
|