Formattazione stile codice

This commit is contained in:
pek5892 2024-05-24 09:17:38 +02:00
parent 1250256b39
commit 49f4c9ddb7
21 changed files with 108 additions and 115 deletions

View File

@ -55,13 +55,13 @@ echo '
<h1>
<i class="'.$structure['icon'].'"></i> '.$structure->getTranslation('title');
// Pulsante "Aggiungi" solo se il modulo è di tipo "table" e se esiste il template per la popup
if ($structure->hasAddFile() && $structure->permission == 'rw') {
echo '
<button type="button" class="btn btn-primary" data-widget="modal" data-title="'.tr('Aggiungi').'..." data-href="add.php?id_module='.$id_module.'&id_plugin='.$id_plugin.'"><i class="fa fa-plus"></i></button>';
}
// Pulsante "Aggiungi" solo se il modulo è di tipo "table" e se esiste il template per la popup
if ($structure->hasAddFile() && $structure->permission == 'rw') {
echo '
<button type="button" class="btn btn-primary" data-widget="modal" data-title="'.tr('Aggiungi').'..." data-href="add.php?id_module='.$id_module.'&id_plugin='.$id_plugin.'"><i class="fa fa-plus"></i></button>';
}
echo '
</h1>
</div>
</div>

View File

@ -228,12 +228,10 @@ if (!$has_settings) {
<div class="row">';
foreach ($settings as $setting => $required) {
if (empty(setting($setting))) {
echo '
<div class="col-md-4">
'.Settings::input($setting, $required).'
</div>';
}
}

View File

@ -448,7 +448,7 @@ function session_get($name, $default = null)
/**
* Imposta un parametro nella sessione secondo un nome indicato.
*
* @param string $name Nome del parametro in dot-notation
* @param string $name Nome del parametro in dot-notation
*
* @return void
*/

View File

@ -279,7 +279,7 @@ class Contratto extends Document
'YEAR(data_bozza) = '.prepare(date('Y', strtotime((string) $data))),
'MONTH(data_bozza) = '.prepare(date('m', strtotime((string) $data))),
]);
} elseif ((str_contains($maschera, 'YYYY')) or (str_contains($maschera, 'yy'))) {
} elseif (str_contains($maschera, 'YYYY') or str_contains($maschera, 'yy')) {
$ultimo = Generator::getPreviousFrom($maschera, 'co_contratti', 'numero', [
'YEAR(data_bozza) = '.prepare(date('Y', strtotime((string) $data))),
]);

View File

@ -92,7 +92,7 @@ if (!empty($id_sede_azienda)) {
$sede_azienda = Sede::find($id_sede_azienda);
}
echo'
echo '
<form action="" method="post" id="edit-form">
<input type="hidden" name="backto" value="record-edit">
<input type="hidden" name="op" value="update">
@ -100,26 +100,26 @@ echo'
<div class="row">
<div class="col-md-2 offset-md-10">';
if (setting('Cambia automaticamente stato ddt fatturati')) {
$id_stato_fatt = (new Stato())->getByField('title', 'Fatturato', Models\Locale::getPredefined()->id);
$id_stato_parz_fatt = (new Stato())->getByField('title', 'Parzialmente fatturato', Models\Locale::getPredefined()->id);
if (setting('Cambia automaticamente stato ddt fatturati')) {
$id_stato_fatt = (new Stato())->getByField('title', 'Fatturato', Models\Locale::getPredefined()->id);
$id_stato_parz_fatt = (new Stato())->getByField('title', 'Parzialmente fatturato', Models\Locale::getPredefined()->id);
if ($ordine->stato->id == $id_stato_fatt || $ordine->stato->id == $id_stato_parz_fatt) {
echo'
if ($ordine->stato->id == $id_stato_fatt || $ordine->stato->id == $id_stato_parz_fatt) {
echo '
{[ "type": "select", "label": "'.tr('Stato').'", "name": "idstatoddt", "required": 1, "values": "query=SELECT `dt_statiddt`.*, `dt_statiddt_lang`.`title` as descrizione, `colore` AS _bgcolor_ FROM `dt_statiddt` LEFT JOIN `dt_statiddt_lang` ON (`dt_statiddt`.`id` = `dt_statiddt_lang`.`id_record` AND `dt_statiddt_lang`.`id_lang`= '.prepare(Models\Locale::getDefault()->id).') ORDER BY `title`", "value": "$idstatoddt$", "extra": "readonly", "class": "unblockable" ]}';
} else {
$id_stato_bozza = (new Stato())->getByField('title', 'Bozza', Models\Locale::getPredefined()->id);
$id_stato_evaso = (new Stato())->getByField('title', 'Evaso', Models\Locale::getPredefined()->id);
$id_stato_parz_evaso = (new Stato())->getByField('title', 'Parzialmente evaso', Models\Locale::getPredefined()->id);
echo'
{[ "type": "select", "label": "'.tr('Stato').'", "name": "idstatoddt", "required": 1, "values": "query=SELECT `dt_statiddt`.*, `dt_statiddt_lang`.`title` as descrizione, `colore` AS _bgcolor_ FROM `dt_statiddt` LEFT JOIN `dt_statiddt_lang` ON (`dt_statiddt`.`id` = `dt_statiddt_lang`.`id_record` AND `dt_statiddt_lang`.`id_lang`= '.prepare(Models\Locale::getDefault()->id).') WHERE `dt_statiddt`.`id` IN ('.implode(',', [$id_stato_bozza, $id_stato_evaso, $id_stato_parz_evaso]).') ORDER BY `title`", "value": "$idstatoddt$", "class": "unblockable" ]}';
}
} else {
echo'
{[ "type": "select", "label": "'.tr('Stato').'", "name": "idstatoddt", "required": 1, "values": "query=SELECT `dt_statiddt`.*, `colore` AS _bgcolor_, `dt_statiddt_lang`.`title` as descrizione FROM `dt_statiddt` LEFT JOIN `dt_statiddt_lang` ON (`dt_statiddt`.`id` = `dt_statiddt_lang`.`id_record` AND `dt_statiddt_lang`.`id_lang`= '.prepare(Models\Locale::getDefault()->id).') ORDER BY `title`", "value": "$idstatoddt$", "class": "unblockable" ]}';
$id_stato_bozza = (new Stato())->getByField('title', 'Bozza', Models\Locale::getPredefined()->id);
$id_stato_evaso = (new Stato())->getByField('title', 'Evaso', Models\Locale::getPredefined()->id);
$id_stato_parz_evaso = (new Stato())->getByField('title', 'Parzialmente evaso', Models\Locale::getPredefined()->id);
echo '
{[ "type": "select", "label": "'.tr('Stato').'", "name": "idstatoddt", "required": 1, "values": "query=SELECT `dt_statiddt`.*, `dt_statiddt_lang`.`title` as descrizione, `colore` AS _bgcolor_ FROM `dt_statiddt` LEFT JOIN `dt_statiddt_lang` ON (`dt_statiddt`.`id` = `dt_statiddt_lang`.`id_record` AND `dt_statiddt_lang`.`id_lang`= '.prepare(Models\Locale::getDefault()->id).') WHERE `dt_statiddt`.`id` IN ('.implode(',', [$id_stato_bozza, $id_stato_evaso, $id_stato_parz_evaso]).') ORDER BY `title`", "value": "$idstatoddt$", "class": "unblockable" ]}';
}
} else {
echo '
{[ "type": "select", "label": "'.tr('Stato').'", "name": "idstatoddt", "required": 1, "values": "query=SELECT `dt_statiddt`.*, `colore` AS _bgcolor_, `dt_statiddt_lang`.`title` as descrizione FROM `dt_statiddt` LEFT JOIN `dt_statiddt_lang` ON (`dt_statiddt`.`id` = `dt_statiddt_lang`.`id_record` AND `dt_statiddt_lang`.`id_lang`= '.prepare(Models\Locale::getDefault()->id).') ORDER BY `title`", "value": "$idstatoddt$", "class": "unblockable" ]}';
}
echo'
echo '
</div>
</div>
@ -142,22 +142,22 @@ echo'
'.Modules::link('Anagrafiche', $record['idanagrafica'], null, null, 'class="pull-right"').'
{[ "type": "select", "label": "'.($dir == 'uscita' ? tr('Mittente') : tr('Destinatario')).'", "name": "idanagrafica", "required": 1, "value": "$idanagrafica$", "ajax-source": "clienti_fornitori" ]}
</div>';
if ($dir == 'entrata') {
echo '
if ($dir == 'entrata') {
echo '
<div class="col-md-3">';
if ($record['idagente'] != 0) {
echo Modules::link('Anagrafiche', $record['idagente'], null, null, 'class="pull-right"');
}
echo '
if ($record['idagente'] != 0) {
echo Modules::link('Anagrafiche', $record['idagente'], null, null, 'class="pull-right"');
}
echo '
{[ "type": "select", "label": "'.tr('Agente').'", "name": "idagente", "ajax-source": "agenti", "select-options": {"idanagrafica": '.$record['idanagrafica'].'}, "value": "$idagente$" ]}
</div>';
}
echo'
}
echo '
<div class="col-md-3">';
if (!empty($record['idreferente'])) {
echo Plugins::link('Referenti', $record['idanagrafica'], null, null, 'class="pull-right"');
}
echo '
if (!empty($record['idreferente'])) {
echo Plugins::link('Referenti', $record['idanagrafica'], null, null, 'class="pull-right"');
}
echo '
{[ "type": "select", "label": "'.tr('Referente').'", "name": "idreferente", "value": "$idreferente$", "ajax-source": "referenti", "select-options": {"idanagrafica": '.$record['idanagrafica'].', "idsede_destinazione": '.$record['idsede_destinazione'].'} ]}
</div>
</div>
@ -190,7 +190,7 @@ echo'
<div class="col-md-2">
{[ "type": "date", "label": "<?php echo tr('Data'); ?>", "name": "data", "required": 1, "value": "$data$" ]}
</div>
<?php
<?php
// Conteggio numero articoli ddt in uscita
$articolo = $dbo->fetchArray('SELECT `mg_articoli`.`id` FROM ((`mg_articoli` INNER JOIN `dt_righe_ddt` ON `mg_articoli`.`id`=`dt_righe_ddt`.`idarticolo`) INNER JOIN `dt_ddt` ON `dt_ddt`.`id`=`dt_righe_ddt`.`idddt`) WHERE `dt_ddt`.`id`='.prepare($id_record));

View File

@ -19,13 +19,11 @@
include_once __DIR__.'/../../core.php';
use Carbon\Carbon;
use Models\Module;
use Models\Upload;
use Modules\Anagrafiche\Anagrafica;
use Modules\Anagrafiche\Sede;
use Modules\Contratti\Contratto;
use Modules\Interventi\Intervento;
use Modules\Ordini\Ordine;
use Modules\Preventivi\Preventivo;
use Modules\Scadenzario\Scadenza;
@ -126,7 +124,7 @@ echo '
<p style="margin:3px 0;"><i class="fa fa-'.($insoluti ? 'warning text-danger' : 'check text-success').'"></i>
'.($insoluti ? tr('Sono presenti insoluti') : tr('Non sono presenti insoluti')).'
</p>';
// Contratto
if ($contratto) {
echo '

View File

@ -289,7 +289,7 @@ $query .= ' ORDER BY `title`';
<?php }
echo '
<div class="col-md-2'.($dir == 'uscita' ? ' offset-md-10':'').'">
<div class="col-md-2'.($dir == 'uscita' ? ' offset-md-10' : '').'">
{[ "type": "select", "label": "'.tr('Stato').'", "name": "idstatodocumento", "required": 1, "values": "query='.$query.'", "value": "'.$fattura->stato->id.'", "class": "'.(($fattura->stato->id != $id_stato_bozza && !$abilita_genera) ? '' : 'unblockable').'", "extra": "onchange=\"return cambiaStato()\"" ]}
</div>
</div>

View File

@ -189,7 +189,7 @@ $sede_azienda = $anagrafica_azienda->sedeLegale;
{[ "type": "select", "label": "<?php echo tr('Tipo attività'); ?>", "name": "idtipointervento", "required": 1, "ajax-source": "tipiintervento", "value": "$idtipointervento$", "readonly": "<?php echo $record['flag_completato']; ?>" ]}
</div>
<div class="col-md-3">
{[ "type": "select", "label": "<?php echo tr('Tags'); ?>", "multiple": "1", "name": "tags[]", "values": "query=SELECT `id`, `name` as descrizione FROM `in_tags` ORDER BY `name`", "value": "<?php echo implode(',', $tags); ?>", "icon-after": "add|<?php echo(new Module())->getByField('title', 'Tags'); ?>|" ]}
{[ "type": "select", "label": "<?php echo tr('Tags'); ?>", "multiple": "1", "name": "tags[]", "values": "query=SELECT `id`, `name` as descrizione FROM `in_tags` ORDER BY `name`", "value": "<?php echo implode(',', $tags); ?>", "icon-after": "add|<?php echo (new Module())->getByField('title', 'Tags'); ?>|" ]}
</div>
</div>

View File

@ -44,7 +44,7 @@ if ($righe_vuote) {
</div>';
}
echo'
echo '
<form action="" method="post" id="edit-form">
<input type="hidden" name="backto" value="record-edit">
<input type="hidden" name="op" value="update">
@ -52,29 +52,29 @@ echo'
<div class="row">
<div class="col-md-2 offset-md-10">';
if (setting('Cambia automaticamente stato ordini fatturati')) {
$id_stato_evaso = (new Stato())->getByField('title', 'Evaso', Models\Locale::getPredefined()->id);
$id_stato_parz_evaso = (new Stato())->getByField('title', 'Parzialmente evaso', Models\Locale::getPredefined()->id);
$id_stato_fatt = (new Stato())->getByField('title', 'Fatturato', Models\Locale::getPredefined()->id);
$id_stato_parz_fatt = (new Stato())->getByField('title', 'Parzialmente fatturato', Models\Locale::getPredefined()->id);
$id_stato_accettato = (new Stato())->getByField('title', 'Accettato', Models\Locale::getPredefined()->id);
if (setting('Cambia automaticamente stato ordini fatturati')) {
$id_stato_evaso = (new Stato())->getByField('title', 'Evaso', Models\Locale::getPredefined()->id);
$id_stato_parz_evaso = (new Stato())->getByField('title', 'Parzialmente evaso', Models\Locale::getPredefined()->id);
$id_stato_fatt = (new Stato())->getByField('title', 'Fatturato', Models\Locale::getPredefined()->id);
$id_stato_parz_fatt = (new Stato())->getByField('title', 'Parzialmente fatturato', Models\Locale::getPredefined()->id);
$id_stato_accettato = (new Stato())->getByField('title', 'Accettato', Models\Locale::getPredefined()->id);
if ($ordine->stato->id == $id_stato_fatt || $ordine->stato->id == $id_stato_parz_fatt || $ordine->stato->id == $id_stato_evaso || $ordine->stato->id == $id_stato_parz_evaso) {
?>
if ($ordine->stato->id == $id_stato_fatt || $ordine->stato->id == $id_stato_parz_fatt || $ordine->stato->id == $id_stato_evaso || $ordine->stato->id == $id_stato_parz_evaso) {
?>
{[ "type": "select", "label": "<?php echo tr('Stato'); ?>", "name": "idstatoordine", "required": 1, "values": "query=SELECT `or_statiordine`.*, `or_statiordine_lang`.`title` as descrizione, `colore` AS _bgcolor_ FROM `or_statiordine` LEFT JOIN `or_statiordine_lang` ON (`or_statiordine_lang`.`id_record` = `or_statiordine`.`id` AND `or_statiordine_lang`.`id_lang` = <?php echo prepare(Models\Locale::getDefault()->id); ?>) ORDER BY `title`", "value": "$idstatoordine$", "extra": "readonly", "class": "unblockable" ]}
<?php
} else {
?>
} else {
?>
{[ "type": "select", "label": "<?php echo tr('Stato'); ?>", "name": "idstatoordine", "required": 1, "values": "query=SELECT `or_statiordine`.*, `or_statiordine_lang`.`title` as descrizione, `colore` AS _bgcolor_ FROM `or_statiordine` LEFT JOIN `or_statiordine_lang` ON (`or_statiordine_lang`.`id_record` = `or_statiordine`.`id` AND `or_statiordine_lang`.`id_lang` = <?php echo prepare(Models\Locale::getDefault()->id); ?>) WHERE (`is_fatturabile` = 0 AND `or_statiordine`.`id` != <?php echo $id_stato_fatt; ?> || `or_statiordine`.`id` = <?php echo $id_stato_accettato; ?>) ORDER BY `title`", "value": "$idstatoordine$", "class": "unblockable" ]}
<?php
}
} else {
?>
}
} else {
?>
{[ "type": "select", "label": "<?php echo tr('Stato'); ?>", "name": "idstatoordine", "required": 1, "values": "query=SELECT `or_statiordine`.*, `colore` AS _bgcolor_, `or_statiordine_lang`.`title` as descrizione FROM `or_statiordine` LEFT JOIN `or_statiordine_lang` ON (`or_statiordine_lang`.`id_record` = `or_statiordine`.`id` AND `or_statiordine_lang`.`id_lang` = <?php echo prepare(Models\Locale::getDefault()->id); ?>) ORDER BY `title`", "value": "$idstatoordine$", "class": "unblockable" ]}
<?php
}
}
echo '
echo '
</div>
</div>
@ -94,7 +94,7 @@ echo'
<!-- RIGA 1 -->
<div class="row">
<div class="col-md-3">';
echo Modules::link('Anagrafiche', $record['idanagrafica'], null, null, 'class="pull-right"');
echo Modules::link('Anagrafiche', $record['idanagrafica'], null, null, 'class="pull-right"');
if ($dir == 'entrata') {
?>
@ -105,14 +105,14 @@ if ($dir == 'entrata') {
{[ "type": "select", "label": "<?php echo tr('Fornitore'); ?>", "name": "idanagrafica", "required": 1, "ajax-source": "fornitori", "value": "$idanagrafica$" ]}
<?php
}
echo'
echo '
</div>
<div class="col-md-3">';
if (!empty($record['idreferente'])) {
echo Plugins::link('Referenti', $record['idanagrafica'], null, null, 'class="pull-right"');
}
echo '
if (!empty($record['idreferente'])) {
echo Plugins::link('Referenti', $record['idanagrafica'], null, null, 'class="pull-right"');
}
echo '
{[ "type": "select", "label": "'.tr('Referente').'", "name": "idreferente", "value": "$idreferente$", "ajax-source": "referenti", "select-options": {"idanagrafica": '.$record['idanagrafica'].', "idsede_destinazione": '.$record['idsede'].'} ]}
</div>
@ -120,17 +120,17 @@ echo'
{[ "type": "select", "label": "'.tr('Sede').'", "name": "idsede", "required": 1, "ajax-source": "sedi", "select-options": {"idanagrafica": '.$record['idanagrafica'].'}, "value": "'.$record['idsede'].'" ]}
</div>';
if ($dir == 'entrata') {
echo '
if ($dir == 'entrata') {
echo '
<div class="col-md-3">';
if ($record['idagente'] != 0) {
echo Modules::link('Anagrafiche', $record['idagente'], null, null, 'class="pull-right"');
}
echo '
if ($record['idagente'] != 0) {
echo Modules::link('Anagrafiche', $record['idagente'], null, null, 'class="pull-right"');
}
echo '
{[ "type": "select", "label": "'.tr('Agente').'", "name": "idagente", "ajax-source": "agenti", "select-options": {"idanagrafica": '.$record['idanagrafica'].'}, "value": "$idagente$" ]}
</div>';
}
echo'
}
echo '
</div>
</div>
</div>

View File

@ -207,7 +207,7 @@ class Ordine extends Document
'MONTH(data) = '.prepare(date('m', strtotime($data))),
'idtipoordine IN (SELECT `id` FROM `or_tipiordine` WHERE `dir` = '.prepare($direzione).')',
]);
} elseif ((str_contains($maschera, 'YYYY')) or (str_contains($maschera, 'yy'))) {
} elseif (str_contains($maschera, 'YYYY') or str_contains($maschera, 'yy')) {
$ultimo = Generator::getPreviousFrom($maschera, 'or_ordini', 'numero', [
'YEAR(data) = '.prepare(date('Y', strtotime($data))),
'idtipoordine IN (SELECT `id` FROM `or_tipiordine` WHERE `dir` = '.prepare($direzione).')',
@ -247,7 +247,7 @@ class Ordine extends Document
'MONTH(data) = '.prepare(date('m', strtotime($data))),
'idtipoordine IN (SELECT `id` FROM `or_tipiordine` WHERE `dir` = '.prepare($direzione).')',
]);
} elseif ((str_contains($maschera, 'YYYY')) or (str_contains($maschera, 'yy'))) {
} elseif (str_contains($maschera, 'YYYY') or str_contains($maschera, 'yy')) {
$ultimo = Generator::getPreviousFrom($maschera, 'or_ordini', 'numero_esterno', [
'YEAR(data) = '.prepare(date('Y', strtotime($data))),
'idtipoordine IN (SELECT `id` FROM `or_tipiordine` WHERE `dir` = '.prepare($direzione).')',

View File

@ -308,7 +308,7 @@ class Preventivo extends Document
'YEAR(data_bozza) = '.prepare(date('Y', strtotime((string) $data))),
'MONTH(data_bozza) = '.prepare(date('m', strtotime((string) $data))),
]);
} elseif ((str_contains($maschera, 'YYYY')) or (str_contains($maschera, 'yy'))) {
} elseif (str_contains($maschera, 'YYYY') or str_contains($maschera, 'yy')) {
$ultimo = Generator::getPreviousFrom($maschera, 'co_preventivi', 'numero', [
'YEAR(data_bozza) = '.prepare(date('Y', strtotime((string) $data))),
]);

View File

@ -547,8 +547,7 @@ class Validator
public function __construct(
/** @var string XML da validare */
protected $xml
)
{
) {
}
/**

View File

@ -495,7 +495,7 @@ class Gestore
// Salvataggio del file
file_put_contents(base_dir().'/'.$file, $xml);
} catch (\Exception $e) {
} catch (\Exception) {
}
// File per il pagamento delle vendite SEPA CBI

View File

@ -234,7 +234,7 @@ class Upload extends Model
if ($this->isImage()) {
// self::generateThumbnails($this);
if( setting('Ridimensiona automaticamente le immagini caricate') ){
if (setting('Ridimensiona automaticamente le immagini caricate')) {
self::ridimensionaImmagini($this);
}
}

View File

@ -67,18 +67,18 @@ echo '
<p> {PAGENO}/{nb} </p>
</td>
</tr>';
if (!empty($impianti)) {
$list = [];
foreach ($impianti as $impianto) {
$list[] = $impianto['nome']." <span style='color:#777;'>(".$impianto['matricola'].')</span>';
}
echo '
if (!empty($impianti)) {
$list = [];
foreach ($impianti as $impianto) {
$list[] = $impianto['nome']." <span style='color:#777;'>(".$impianto['matricola'].')</span>';
}
echo '
<br>
<p class="small-bold text-muted">'.tr('Impianti', [], ['upper' => true]).'</p>
<p><small>'.implode(', ', $list).'</small></p>';
}
echo'
}
echo '
</table>
</div>

View File

@ -114,8 +114,8 @@ if (!empty($destinazione)) {
<p><small>'.$destinazione.'</small></p>
</td>
</tr>';
if ($codice_destinatario) {
echo'
if ($codice_destinatario) {
echo '
<tr>
<td>
<p class="small-bold text-muted">'.tr('Codice destinatario', [], ['upper' => true]).'</p>
@ -124,7 +124,7 @@ if (!empty($destinazione)) {
<small>'.$codice_destinatario.'</small>
</td>
</tr>';
}
}
}
echo '

View File

@ -112,8 +112,8 @@ if (!empty($destinazione)) {
<p><small>$c_destinazione$</small></p>
</td>
</tr>';
if ($codice_destinatario) {
echo'
if ($codice_destinatario) {
echo '
<tr>
<td>
<p class="small-bold text-muted">'.tr('Codice destinatario', [], ['upper' => true]).'</p>
@ -122,7 +122,7 @@ if (!empty($destinazione)) {
<small>'.$codice_destinatario.'</small>
</td>
</tr>';
}
}
}
echo '

View File

@ -411,4 +411,3 @@ if (!empty($documento['note'])) {
<p class="small-bold text-muted">'.tr('Note', [], ['upper' => true]).':</p>
<p>'.nl2br((string) $documento['note']).'</p>';
}

View File

@ -114,8 +114,8 @@ if (!empty($destinazione)) {
<p><small>'.$destinazione.'</small></p>
</td>
</tr>';
if ($codice_destinatario) {
echo'
if ($codice_destinatario) {
echo '
<tr>
<td>
<p class="small-bold text-muted">'.tr('Codice destinatario', [], ['upper' => true]).'</p>
@ -124,7 +124,7 @@ if (!empty($destinazione)) {
<small>'.$codice_destinatario.'</small>
</td>
</tr>';
}
}
}
echo '

View File

@ -91,18 +91,18 @@ echo '
<p> {PAGENO}/{nb} </p>
</td>
</tr>';
if (!empty($impianti)) {
$list = [];
foreach ($impianti as $impianto) {
$list[] = $impianto['nome']." <span style='color:#777;'>(".$impianto['matricola'].')</span>';
}
echo '
if (!empty($impianti)) {
$list = [];
foreach ($impianti as $impianto) {
$list[] = $impianto['nome']." <span style='color:#777;'>(".$impianto['matricola'].')</span>';
}
echo '
<br>
<p class="small-bold text-muted">'.tr('Impianti', [], ['upper' => true]).'</p>
<p><small>'.implode(', ', $list).'</small></p>';
}
echo'
}
echo '
</table>
</div>
<div class="col-xs-6 pull-right">
@ -134,9 +134,8 @@ echo '
</td>
</tr>';
if (!empty($destinazione)) {
echo '
if (!empty($destinazione)) {
echo '
<tr>
<td class="border-bottom">
<p class="small-bold text-muted">'.tr('Destinazione diversa', [], ['upper' => true]).'</p>
@ -145,8 +144,8 @@ echo '
<small>'.$destinazione.'</small>
</td>
</tr>';
}
echo '
}
echo '
</table>
</div>
</div>';

View File

@ -26,7 +26,7 @@ foreach ($impostazioni as $impostazione) {
// Rimozione dell'indice precedente
try {
$database->query('ALTER TABLE `zz_settings` DROP INDEX `nome`');
} catch (PDOException $e) {
} catch (PDOException) {
}
$database->query('ALTER TABLE `zz_settings` CHANGE `nome` `nome` VARCHAR(150) NOT NULL');
$database->query('ALTER TABLE `zz_settings` ADD UNIQUE(`nome`)');