Correzioni minori
This commit is contained in:
parent
ad28280d5c
commit
6c6b73b4c2
|
@ -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
|
||||
|
|
|
@ -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();';
|
||||
}
|
||||
|
|
|
@ -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\'" ]}
|
||||
|
|
Loading…
Reference in New Issue