Correzioni minori

This commit is contained in:
Dasc3er 2020-09-24 09:25:44 +02:00
parent ad28280d5c
commit 6c6b73b4c2
3 changed files with 7 additions and 9 deletions

View File

@ -91,15 +91,13 @@ if (!empty($query)) {
}
}
//Rimuovo risultati con id a null
foreach ( $rows as $i => $r ) {
if ( empty($r['id'] ) ) {
unset($rows[$i]);
}
}
// Creazione della tabella
foreach ($rows as $i => $r) {
// Evitare risultati con id a null
if (empty($r['id'])) {
continue;
}
$result = [
'id' => $r['id'],
'<span class="hide" data-id="'.$r['id'].'"></span>', // Colonna ID

View File

@ -419,7 +419,7 @@ if ($read_only || !empty($block_edit)) {
';
//Nascondo il plugin note interne ai clienti
if( $user->gruppo=="Clienti" ){
if ($user->gruppo == 'Clienti') {
echo '
$("#link-tab_note").hide();';
}

View File

@ -287,7 +287,7 @@ echo '
</div>
<?php
//Nascondo le note interne ai clienti
if( $user->gruppo!="Clienti" ){
if ($user->gruppo != 'Clienti') {
echo '
<div class="col-md-12">
{[ "type": "textarea", "label": "'.tr('Note interne').'", "name": "informazioniaggiuntive", "class": "autosize", "value": "$informazioniaggiuntive$", "extra": "rows=\'5\'" ]}