1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-26 15:54:17 +01:00

Miglioria visualizzazione colonne datatables

This commit is contained in:
MatteoPistorello 2022-10-25 09:59:54 +02:00
parent 7a0d1c4801
commit 70b6408c77

View File

@ -78,6 +78,7 @@ if (!empty($query)) {
// Allineamento delle righe
$align = [];
$i = 0;
$row = isset($rows[0]) ? $rows[0] : [];
foreach ($row as $field => $value) {
if (!empty($value)){
@ -85,7 +86,7 @@ if (!empty($query)) {
}
// Allineamento a destra se il valore della prima riga risulta numerica
if (is_numeric($value) && formatter()->isStandardNumber($value)) {
if ((is_numeric($value) && formatter()->isStandardNumber($value)) || $total['format'][$i]) {
$align[$field] = 'text-right';
}
@ -93,6 +94,7 @@ if (!empty($query)) {
elseif (formatter()->isStandardDate($value) || preg_match('/^icon_(.+?)$/', $field)) {
$align[$field] = 'text-center';
}
$i++;
}
// Creazione della tabella