Correzioni per PHP 8

This commit is contained in:
Thomas Zilio 2020-10-20 10:46:34 +02:00
parent 1088c91c3a
commit d018cf34b8
3 changed files with 6 additions and 6 deletions

View File

@ -339,7 +339,7 @@ if ($structure->permission == 'rw') {
redirect(base_path().'/controller.php?id_module='.$id_module, 'js');
} else {
// Esecuzione delle operazioni del modulo
include $structure->filepath('actions.php');
($include_file = $structure->filepath('actions.php')) ? include $include_file : null;
// Operazioni generiche per i campi personalizzati
if (post('op') != null) {

View File

@ -182,7 +182,7 @@ echo '
async function salva(button) {
$("#messages").html("");
var qta_input = $("#qta");
var qta_input = input("qta");
var tipo_movimento = $("#tipo_movimento").val();
let valid = await salvaForm(button, "#add-form");
@ -192,7 +192,7 @@ echo '
let prezzo_acquisto = parseFloat(articolo.prezzo_acquisto);
let prezzo_vendita = parseFloat(articolo.prezzo_vendita);
let qta_movimento = parseFloat(qta_input.val());
let qta_movimento = qta_input.get();
let alert_type, icon, text, qta_rimanente;
if (tipo_movimento === "carico") {
@ -230,7 +230,7 @@ echo '
$("#messages").html(testo);
}
qta_input.val(1);
qta_input.set(1);
$("#causale").trigger("change");
}
}

View File

@ -71,8 +71,8 @@ class AJAX
}
}
$total = $results['recordsFiltered'] ?: count($results);
$list = isset($results['results']) ? $results['results'] : $results;
$total = array_key_exists('recordsFiltered', $results) ? $results['recordsFiltered'] : count($results);
$list = array_key_exists('results', $results) ? $results['results'] : $results;
return [
'results' => $list ?: [],