Fix stile

This commit is contained in:
loviuz 2020-02-05 14:51:39 +01:00
parent 8e85ab8f98
commit 4d2280c5ce
26 changed files with 86 additions and 112 deletions

View File

@ -247,7 +247,7 @@ elseif (post('op') == 'send-email') {
$email = EmailNotification::build($mail); $email = EmailNotification::build($mail);
$email_success = $email->send(); $email_success = $email->send();
if ($email_success){ if ($email_success) {
OperationLog::setInfo('id_email', $mail->id); OperationLog::setInfo('id_email', $mail->id);
flash()->info(tr('Email inviata correttamente!')); flash()->info(tr('Email inviata correttamente!'));
} else { } else {

View File

@ -279,7 +279,7 @@ switch (post('op')) {
if (filter('op') == 'link_file') { if (filter('op') == 'link_file') {
$nome = filter('nome_allegato'); $nome = filter('nome_allegato');
if ($nome == 'Logo stampe' or $nome = 'Filigrana stampe' ){ if ($nome == 'Logo stampe' or $nome = 'Filigrana stampe') {
if (setting('Azienda predefinita') == $id_record && filter('nome_allegato') == $nome) { if (setting('Azienda predefinita') == $id_record && filter('nome_allegato') == $nome) {
Settings::setValue($nome, $upload); Settings::setValue($nome, $upload);
} }

View File

@ -297,7 +297,6 @@ switch ($resource) {
break; break;
case 'relazioni': case 'relazioni':
$query = 'SELECT id, descrizione, colore AS _bgcolor_ FROM an_relazioni ORDER BY descrizione'; $query = 'SELECT id, descrizione, colore AS _bgcolor_ FROM an_relazioni ORDER BY descrizione';
@ -312,7 +311,6 @@ switch ($resource) {
break; break;
case 'dichiarazioni_intento': case 'dichiarazioni_intento':
$query = "SELECT id, CONCAT_WS(' - ', numero_protocollo, numero_progressivo) as descrizione FROM co_dichiarazioni_intento |where| ORDER BY data"; $query = "SELECT id, CONCAT_WS(' - ', numero_protocollo, numero_progressivo) as descrizione FROM co_dichiarazioni_intento |where| ORDER BY data";

View File

@ -1,4 +1,5 @@
<?php <?php
if (in_array($id_cliente, $tipi_anagrafica) or in_array($id_fornitore, $tipi_anagrafica)) { if (in_array($id_cliente, $tipi_anagrafica) or in_array($id_fornitore, $tipi_anagrafica)) {
echo ' echo '
<div class="btn-group"> <div class="btn-group">
@ -15,7 +16,6 @@ if (in_array($id_cliente, $tipi_anagrafica) or in_array($id_fornitore, $tipi_ana
</a></li>'; </a></li>';
} }
if (in_array($id_cliente, $tipi_anagrafica)) { if (in_array($id_cliente, $tipi_anagrafica)) {
echo ' echo '
<li><a data-toggle="modal" data-title="'.tr('Aggiungi intervento').'" data-href="add.php?id_module='.Modules::get('Interventi')['id'].'&idanagrafica='.$record['idanagrafica'].'"><i class="fa fa-wrench"></i>'.tr('Nuovo intervento').' <li><a data-toggle="modal" data-title="'.tr('Aggiungi intervento').'" data-href="add.php?id_module='.Modules::get('Interventi')['id'].'&idanagrafica='.$record['idanagrafica'].'"><i class="fa fa-wrench"></i>'.tr('Nuovo intervento').'

View File

@ -237,8 +237,8 @@ echo '
</div> </div>
</div>'; </div>';
if ($is_cliente or $is_fornitore or $is_tecnico){ if ($is_cliente or $is_fornitore or $is_tecnico) {
echo ' echo '
<div class="panel panel-primary"> <div class="panel panel-primary">
<div class="panel-heading"> <div class="panel-heading">

View File

@ -4,9 +4,9 @@ include_once __DIR__.'/../../core.php';
use Modules\Anagrafiche\Anagrafica; use Modules\Anagrafiche\Anagrafica;
$rs = $dbo->fetchArray("SELECT idtipoanagrafica, descrizione FROM an_tipianagrafiche"); $rs = $dbo->fetchArray('SELECT idtipoanagrafica, descrizione FROM an_tipianagrafiche');
foreach ($rs as $riga){ foreach ($rs as $riga) {
${"id_".strtolower($riga['descrizione'])} = $riga['idtipoanagrafica']; ${'id_'.strtolower($riga['descrizione'])} = $riga['idtipoanagrafica'];
} }
if (isset($id_record)) { if (isset($id_record)) {

View File

@ -22,10 +22,10 @@ switch (filter('op')) {
$nota = filter('nota'); $nota = filter('nota');
$colore = filter('colore'); $colore = filter('colore');
$n = $dbo->fetchNum("SELECT * FROM `mg_categorie` WHERE `nome` LIKE ".prepare($nome)); $n = $dbo->fetchNum('SELECT * FROM `mg_categorie` WHERE `nome` LIKE '.prepare($nome));
if (isset($nome)) { if (isset($nome)) {
if ($n==0) { if ($n == 0) {
$dbo->query('INSERT INTO `mg_categorie` (`nome`, `colore`, `nota`) VALUES ('.prepare($nome).', '.prepare($colore).', '.prepare($nota).')'); $dbo->query('INSERT INTO `mg_categorie` (`nome`, `colore`, `nota`) VALUES ('.prepare($nome).', '.prepare($colore).', '.prepare($nota).')');
$id_record = $dbo->lastInsertedID(); $id_record = $dbo->lastInsertedID();
@ -37,7 +37,7 @@ switch (filter('op')) {
flash()->info(tr('Aggiunta nuova tipologia di _TYPE_', [ flash()->info(tr('Aggiunta nuova tipologia di _TYPE_', [
'_TYPE_' => 'categoria', '_TYPE_' => 'categoria',
])); ]));
}else{ } else {
flash()->error(tr('Esiste già una categoria con lo stesso nome!')); flash()->error(tr('Esiste già una categoria con lo stesso nome!'));
} }
} else { } else {

View File

@ -173,7 +173,7 @@ switch (post('op')) {
$xml = \Util\XML::read($fattura->getXML()); $xml = \Util\XML::read($fattura->getXML());
$dati_generali = $xml['FatturaElettronicaBody']['DatiGenerali']['DatiGeneraliDocumento']; $dati_generali = $xml['FatturaElettronicaBody']['DatiGenerali']['DatiGeneraliDocumento'];
$totale_documento = ($fattura->isNota() ) ? -abs(floatval($dati_generali['ImportoTotaleDocumento'])) : abs(floatval($dati_generali['ImportoTotaleDocumento'])) ?: null; $totale_documento = ($fattura->isNota()) ? -abs(floatval($dati_generali['ImportoTotaleDocumento'])) : abs(floatval($dati_generali['ImportoTotaleDocumento'])) ?: null;
} catch (Exception $e) { } catch (Exception $e) {
$totale_documento = null; $totale_documento = null;
} }
@ -490,7 +490,6 @@ switch (post('op')) {
flash()->info(tr('Intervento _NUM_ rimosso!', [ flash()->info(tr('Intervento _NUM_ rimosso!', [
'_NUM_' => $idintervento, '_NUM_' => $idintervento,
])); ]));
} catch (InvalidArgumentException $e) { } catch (InvalidArgumentException $e) {
flash()->error(tr('Errore durante l\'eliminazione della riga!')); flash()->error(tr('Errore durante l\'eliminazione della riga!'));
} }

View File

@ -191,26 +191,26 @@ switch (post('op')) {
$fattura = Fattura::find($id); $fattura = Fattura::find($id);
$id_segment = (post('id_segment') ? post('id_segment') : $fattura->id_segment); $id_segment = (post('id_segment') ? post('id_segment') : $fattura->id_segment);
$dir = $dbo->fetchOne("SELECT dir FROM co_tipidocumento WHERE id=".prepare($fattura->idtipodocumento))['dir']; $dir = $dbo->fetchOne('SELECT dir FROM co_tipidocumento WHERE id='.prepare($fattura->idtipodocumento))['dir'];
//+ 1 giorno //+ 1 giorno
if(post('skip_time')=='Giorno'){ if (post('skip_time') == 'Giorno') {
$data = date("Y-m-d", strtotime( '+1 day' , strtotime ( $fattura->data )) ); $data = date('Y-m-d', strtotime('+1 day', strtotime($fattura->data)));
} }
//+ 1 settimana //+ 1 settimana
if(post('skip_time')=='Settimana'){ if (post('skip_time') == 'Settimana') {
$data = date("Y-m-d", strtotime( '+1 week' , strtotime ( $fattura->data )) ); $data = date('Y-m-d', strtotime('+1 week', strtotime($fattura->data)));
} }
//+ 1 mese //+ 1 mese
if(post('skip_time')=='Mese'){ if (post('skip_time') == 'Mese') {
$data = date("Y-m-d", strtotime( '+1 month' , strtotime ( $fattura->data )) ); $data = date('Y-m-d', strtotime('+1 month', strtotime($fattura->data)));
} }
//+ 1 anno //+ 1 anno
if(post('skip_time')=='Anno'){ if (post('skip_time') == 'Anno') {
$data = date("Y-m-d", strtotime( '+1 year' , strtotime ( $fattura->data )) ); $data = date('Y-m-d', strtotime('+1 year', strtotime($fattura->data)));
} }
$new = $fattura->replicate(); $new = $fattura->replicate();
@ -223,8 +223,7 @@ switch (post('op')) {
$righe = $fattura->getRighe(); $righe = $fattura->getRighe();
foreach ($righe as $riga) { foreach ($righe as $riga) {
if (!post('riferimenti')) {
if( !post('riferimenti') ){
$riga->idpreventivo = 0; $riga->idpreventivo = 0;
$riga->idcontratto = 0; $riga->idcontratto = 0;
$riga->idintervento = 0; $riga->idintervento = 0;
@ -237,12 +236,11 @@ switch (post('op')) {
$new_riga->save(); $new_riga->save();
if( $new_riga->idarticolo ){ if ($new_riga->idarticolo) {
$articolo = Articolo::find($new_riga->id); $articolo = Articolo::find($new_riga->id);
$articolo->movimentaMagazzino($articolo->qta); $articolo->movimentaMagazzino($articolo->qta);
} }
} }
} }
flash()->info(tr('Fatture duplicate correttamente!')); flash()->info(tr('Fatture duplicate correttamente!'));

View File

@ -193,7 +193,8 @@ if (empty($record['is_fiscale'])) {
} else { } else {
?> ?>
{[ "type": "select", "label": "<?php echo tr('Fornitore'); ?>", "name": "idanagrafica", "required": 1, "ajax-source": "fornitori", "value": "$idanagrafica$" ]} {[ "type": "select", "label": "<?php echo tr('Fornitore'); ?>", "name": "idanagrafica", "required": 1, "ajax-source": "fornitori", "value": "$idanagrafica$" ]}
<?php } ?> <?php
} ?>
</div> </div>
@ -212,8 +213,7 @@ if (empty($record['is_fiscale'])) {
<div class="col-md-6"> <div class="col-md-6">
<?php <?php
echo Plugins::link('Sedi', $record['idsede_partenza'], null, null, 'class="pull-right"'); echo Plugins::link('Sedi', $record['idsede_partenza'], null, null, 'class="pull-right"'); ?>
?>
{[ "type": "select", "label": "<?php echo tr('Partenza merce'); ?>", "name": "idsede_partenza", "ajax-source": "sedi", "placeholder": "Sede legale", "value": "$idsede_partenza$", "icon-after": "add|<?php echo Modules::get('Anagrafiche')['id']; ?>|id_plugin=<?php echo Plugins::get('Sedi')['id']; ?>&id_parent=<?php echo $record['idanagrafica']; ?>||<?php echo (intval($block_edit)) ? 'disabled' : ''; ?>" ]} {[ "type": "select", "label": "<?php echo tr('Partenza merce'); ?>", "name": "idsede_partenza", "ajax-source": "sedi", "placeholder": "Sede legale", "value": "$idsede_partenza$", "icon-after": "add|<?php echo Modules::get('Anagrafiche')['id']; ?>|id_plugin=<?php echo Plugins::get('Sedi')['id']; ?>&id_parent=<?php echo $record['idanagrafica']; ?>||<?php echo (intval($block_edit)) ? 'disabled' : ''; ?>" ]}
</div> </div>
@ -221,8 +221,7 @@ if (empty($record['is_fiscale'])) {
<div class="col-md-6"> <div class="col-md-6">
<?php <?php
echo Plugins::link('Sedi', $record['idsede_destinazione'], null, null, 'class="pull-right"'); echo Plugins::link('Sedi', $record['idsede_destinazione'], null, null, 'class="pull-right"'); ?>
?>
{[ "type": "select", "label": "<?php echo tr('Destinazione merce'); ?>", "name": "idsede_destinazione", "ajax-source": "sedi_azienda", "value": "$idsede_destinazione$", "readonly": "<?php echo (sizeof($articolo)) ? 1 : 0; ?>" ]} {[ "type": "select", "label": "<?php echo tr('Destinazione merce'); ?>", "name": "idsede_destinazione", "ajax-source": "sedi_azienda", "value": "$idsede_destinazione$", "readonly": "<?php echo (sizeof($articolo)) ? 1 : 0; ?>" ]}
</div> </div>
@ -232,8 +231,7 @@ if (empty($record['is_fiscale'])) {
<div class="col-md-6"> <div class="col-md-6">
<?php <?php
echo Plugins::link('Sedi', $record['idsede_partenza'], null, null, 'class="pull-right"'); echo Plugins::link('Sedi', $record['idsede_partenza'], null, null, 'class="pull-right"'); ?>
?>
{[ "type": "select", "label": "<?php echo tr('Partenza merce'); ?>", "name": "idsede_partenza", "ajax-source": "sedi_azienda", "placeholder": "Sede legale", "value": "$idsede_partenza$", "readonly": "<?php echo (sizeof($articolo)) ? 1 : 0; ?>" ]} {[ "type": "select", "label": "<?php echo tr('Partenza merce'); ?>", "name": "idsede_partenza", "ajax-source": "sedi_azienda", "placeholder": "Sede legale", "value": "$idsede_partenza$", "readonly": "<?php echo (sizeof($articolo)) ? 1 : 0; ?>" ]}
</div> </div>
@ -241,8 +239,7 @@ if (empty($record['is_fiscale'])) {
<div class="col-md-6"> <div class="col-md-6">
<?php <?php
echo Plugins::link('Sedi', $record['idsede_destinazione'], null, null, 'class="pull-right"'); echo Plugins::link('Sedi', $record['idsede_destinazione'], null, null, 'class="pull-right"'); ?>
?>
{[ "type": "select", "label": "<?php echo tr('Destinazione merce'); ?>", "name": "idsede_destinazione", "ajax-source": "sedi", "value": "$idsede_destinazione$", "readonly": "", "icon-after": "add|<?php echo Modules::get('Anagrafiche')['id']; ?>|id_plugin=<?php echo Plugins::get('Sedi')['id']; ?>&id_parent=<?php echo $record['idanagrafica']; ?>||<?php echo (intval($block_edit)) ? 'disabled' : ''; ?>" ]} {[ "type": "select", "label": "<?php echo tr('Destinazione merce'); ?>", "name": "idsede_destinazione", "ajax-source": "sedi", "value": "$idsede_destinazione$", "readonly": "", "icon-after": "add|<?php echo Modules::get('Anagrafiche')['id']; ?>|id_plugin=<?php echo Plugins::get('Sedi')['id']; ?>&id_parent=<?php echo $record['idanagrafica']; ?>||<?php echo (intval($block_edit)) ? 'disabled' : ''; ?>" ]}
</div> </div>

View File

@ -99,8 +99,8 @@ foreach ($righe as $riga) {
$extra_riga = ''; $extra_riga = '';
if (!$r['is_descrizione']) { if (!$r['is_descrizione']) {
$extra_riga = tr('_DESCRIZIONE_CONTO__ID_DOCUMENTO__NUMERO_RIGA__CODICE_CIG__CODICE_CUP__RITENUTA_ACCONTO__RITENUTA_CONTRIBUTI_', [ $extra_riga = tr('_DESCRIZIONE_CONTO__ID_DOCUMENTO__NUMERO_RIGA__CODICE_CIG__CODICE_CUP__RITENUTA_ACCONTO__RITENUTA_CONTRIBUTI_', [
'_RITENUTA_ACCONTO_' => $r['ritenuta_acconto'] ? '<br>Ritenuta acconto: '.$r['ritenuta_acconto']: null, '_RITENUTA_ACCONTO_' => $r['ritenuta_acconto'] ? '<br>Ritenuta acconto: '.$r['ritenuta_acconto'] : null,
'_RITENUTA_CONTRIBUTI_' => $r['ritenuta_contributi'] ? '<br>Ritenuta contributi: '.$r['ritenuta_contributi']: null, '_RITENUTA_CONTRIBUTI_' => $r['ritenuta_contributi'] ? '<br>Ritenuta contributi: '.$r['ritenuta_contributi'] : null,
'_DESCRIZIONE_CONTO_' => $r['descrizione_conto'] ?: null, '_DESCRIZIONE_CONTO_' => $r['descrizione_conto'] ?: null,
'_ID_DOCUMENTO_' => $r['id_documento_fe'] ? ' - DOC: '.$r['id_documento_fe'] : null, '_ID_DOCUMENTO_' => $r['id_documento_fe'] ? ' - DOC: '.$r['id_documento_fe'] : null,
'_NUMERO_RIGA_' => $r['num_item'] ? ', NRI: '.$r['num_item'] : null, '_NUMERO_RIGA_' => $r['num_item'] ? ', NRI: '.$r['num_item'] : null,

View File

@ -391,7 +391,7 @@ class Fattura extends Document
foreach ($rate as $rata) { foreach ($rate as $rata) {
$scadenza = $rata['DataScadenzaPagamento'] ?: $this->data; $scadenza = $rata['DataScadenzaPagamento'] ?: $this->data;
$importo = ($this->isNota() ) ? $rata['ImportoPagamento'] : -$rata['ImportoPagamento']; $importo = ($this->isNota()) ? $rata['ImportoPagamento'] : -$rata['ImportoPagamento'];
self::registraScadenza($this, $importo, $scadenza, $is_pagato); self::registraScadenza($this, $importo, $scadenza, $is_pagato);
} }

View File

@ -6,20 +6,16 @@ switch (filter('op')) {
case 'update': case 'update':
$is_all_valid = true; $is_all_valid = true;
foreach (post('setting') as $id => $value) { foreach (post('setting') as $id => $value) {
$result = Settings::get($id); $result = Settings::get($id);
if (preg_match("/multiple\[(.+?)\]/", $result['tipo'], $m)) { if (preg_match("/multiple\[(.+?)\]/", $result['tipo'], $m)) {
$value = implode(",", $value); $value = implode(',', $value);
} }
$is_valid = Settings::setValue($id, $value); $is_valid = Settings::setValue($id, $value);
if (!$is_valid) { if (!$is_valid) {
// integer // integer
if ($result['tipo'] == 'integer') { if ($result['tipo'] == 'integer') {
flash()->error(tr('Il valore inserito del parametro _NAME_ deve essere un numero intero!', [ flash()->error(tr('Il valore inserito del parametro _NAME_ deve essere un numero intero!', [
@ -34,8 +30,6 @@ switch (filter('op')) {
'_NAME_' => '"'.$result['nome'].'"', '_NAME_' => '"'.$result['nome'].'"',
])); ]));
} }
} }
$is_all_valid &= $is_valid; $is_all_valid &= $is_valid;

View File

@ -169,14 +169,11 @@ class Intervento extends Document
//$ultimo = Generator::getPreviousFrom($maschera, 'in_interventi', 'codice'); //$ultimo = Generator::getPreviousFrom($maschera, 'in_interventi', 'codice');
if ((strpos($maschera, 'YYYY') !== false) or (strpos($maschera, 'yy') !== false)) { if ((strpos($maschera, 'YYYY') !== false) or (strpos($maschera, 'yy') !== false)) {
$ultimo = Generator::getPreviousFrom($maschera, 'in_interventi', 'codice', [ $ultimo = Generator::getPreviousFrom($maschera, 'in_interventi', 'codice', [
'YEAR(data_richiesta) = '.prepare(date('Y', strtotime($data))), 'YEAR(data_richiesta) = '.prepare(date('Y', strtotime($data))),
]); ]);
} else {
}else{
$ultimo = Generator::getPreviousFrom($maschera, 'in_interventi', 'codice'); $ultimo = Generator::getPreviousFrom($maschera, 'in_interventi', 'codice');
} }

View File

@ -238,12 +238,10 @@ class Preventivo extends Document
$maschera = setting('Formato codice preventivi'); $maschera = setting('Formato codice preventivi');
if ((strpos($maschera, 'YYYY') !== false) or (strpos($maschera, 'yy') !== false)) { if ((strpos($maschera, 'YYYY') !== false) or (strpos($maschera, 'yy') !== false)) {
$ultimo = Generator::getPreviousFrom($maschera, 'co_preventivi', 'numero', [ $ultimo = Generator::getPreviousFrom($maschera, 'co_preventivi', 'numero', [
'YEAR(data_bozza) = '.prepare(date('Y', strtotime($data))), 'YEAR(data_bozza) = '.prepare(date('Y', strtotime($data))),
]); ]);
} else {
}else{
$ultimo = Generator::getPreviousFrom($maschera, 'co_preventivi', 'numero'); $ultimo = Generator::getPreviousFrom($maschera, 'co_preventivi', 'numero');
} }

View File

@ -38,8 +38,8 @@ if (!empty($righe)) {
'_NUM_' => count($righe), '_NUM_' => count($righe),
]).'. ]).'.
</div>'; </div>';
}else{ } else {
?> ?>
<a class="btn btn-danger ask" data-backto="record-list"> <a class="btn btn-danger ask" data-backto="record-list">
<i class="fa fa-trash"></i> <?php echo tr('Elimina'); ?> <i class="fa fa-trash"></i> <?php echo tr('Elimina'); ?>

View File

@ -73,7 +73,6 @@ switch (post('op')) {
$query = 'DELETE FROM co_contratti_tipiintervento WHERE idtipointervento='.prepare($id_record); $query = 'DELETE FROM co_contratti_tipiintervento WHERE idtipointervento='.prepare($id_record);
$dbo->query($query); $dbo->query($query);
$query = 'DELETE FROM in_tipiintervento WHERE idtipointervento='.prepare($id_record); $query = 'DELETE FROM in_tipiintervento WHERE idtipointervento='.prepare($id_record);
$dbo->query($query); $dbo->query($query);

View File

@ -2,8 +2,9 @@
include_once __DIR__.'/../../core.php'; include_once __DIR__.'/../../core.php';
if (!empty(filter('idanagrafica'))) if (!empty(filter('idanagrafica'))) {
$utente['id_anagrafica'] = filter('idanagrafica'); $utente['id_anagrafica'] = filter('idanagrafica');
}
$_SESSION['superselect']['idanagrafica'] = $utente['id_anagrafica']; $_SESSION['superselect']['idanagrafica'] = $utente['id_anagrafica'];

View File

@ -808,7 +808,7 @@ class FatturaElettronica
$percentuale = database()->fetchOne('SELECT percentuale FROM co_ritenutaacconto WHERE id = '.prepare($id_ritenuta))['percentuale']; $percentuale = database()->fetchOne('SELECT percentuale FROM co_ritenutaacconto WHERE id = '.prepare($id_ritenuta))['percentuale'];
$result['DatiRitenuta'] = [ $result['DatiRitenuta'] = [
'TipoRitenuta' => (Validate::isValidTaxCode($azienda['codice_fiscale']) and $cliente['tipo']=='Privato') ? 'RT01' : 'RT02', 'TipoRitenuta' => (Validate::isValidTaxCode($azienda['codice_fiscale']) and $cliente['tipo'] == 'Privato') ? 'RT01' : 'RT02',
'ImportoRitenuta' => $totale_ritenutaacconto, 'ImportoRitenuta' => $totale_ritenutaacconto,
'AliquotaRitenuta' => $percentuale, 'AliquotaRitenuta' => $percentuale,
'CausalePagamento' => setting("Causale ritenuta d'acconto"), 'CausalePagamento' => setting("Causale ritenuta d'acconto"),

View File

@ -116,7 +116,7 @@ class FileManager implements ManagerInterface
<i class="fa fa-external-link"></i> '.$r['name'].' <i class="fa fa-external-link"></i> '.$r['name'].'
</a> </a>
<small> ('.$file->extension.')'.((!empty($file->size)) ? ' ('.\Util\FileSystem::formatBytes($file->size).')' : '').' '.(($r['name']=='Logo stampe' or $r['name']=='Filigrana stampe') ? '<i class="fa fa-file-text-o"></i>': '' ).'</small>'.' <small> ('.$file->extension.')'.((!empty($file->size)) ? ' ('.\Util\FileSystem::formatBytes($file->size).')' : '').' '.(($r['name'] == 'Logo stampe' or $r['name'] == 'Filigrana stampe') ? '<i class="fa fa-file-text-o"></i>' : '').'</small>'.'
</td> </td>
<td>'.\Translator::timestampToLocale($r['created_at']).'</td> <td>'.\Translator::timestampToLocale($r['created_at']).'</td>

View File

@ -250,7 +250,7 @@ class Prints
{ {
//http://localhost/openstamanager/ //http://localhost/openstamanager/
$folders = explode('/', dirname($_SERVER['PHP_SELF'])); $folders = explode('/', dirname($_SERVER['PHP_SELF']));
$base = (stripos($_SERVER['SERVER_PROTOCOL'],'https') === 0 ? 'https://' : 'http://').$_SERVER['SERVER_NAME'].'/'.$folders[1].'/'; $base = (stripos($_SERVER['SERVER_PROTOCOL'], 'https') === 0 ? 'https://' : 'http://').$_SERVER['SERVER_NAME'].'/'.$folders[1].'/';
return ROOTDIR.'/assets/dist/pdfjs/web/viewer.html?file='.$base.ltrim(str_replace(DOCROOT, '', $path), '/'); return ROOTDIR.'/assets/dist/pdfjs/web/viewer.html?file='.$base.ltrim(str_replace(DOCROOT, '', $path), '/');
} }
@ -461,8 +461,7 @@ class Prints
//'PDFAauto' => true, //'PDFAauto' => true,
]); ]);
if (setting('Filigrana stampe')){ if (setting('Filigrana stampe')) {
$mpdf->SetWatermarkImage( $mpdf->SetWatermarkImage(
DOCROOT.'/files/anagrafiche/'.setting('Filigrana stampe'), DOCROOT.'/files/anagrafiche/'.setting('Filigrana stampe'),
0.5, 0.5,
@ -471,12 +470,11 @@ class Prints
); );
// false = 'showWatermarkImage' => false, // false = 'showWatermarkImage' => false,
if ($settings['showWatermarkImage']==null){ if ($settings['showWatermarkImage'] == null) {
$mpdf->showWatermarkImage = true; $mpdf->showWatermarkImage = true;
}else{ } else {
$mpdf->showWatermarkImage = intval($settings['showWatermarkImage']); $mpdf->showWatermarkImage = intval($settings['showWatermarkImage']);
} }
} }
// Inclusione dei fogli di stile CSS // Inclusione dei fogli di stile CSS

View File

@ -87,10 +87,8 @@ class Settings
*/ */
public static function setValue($setting, $value) public static function setValue($setting, $value)
{ {
$setting = self::get($setting); $setting = self::get($setting);
// Trasformazioni // Trasformazioni
// Boolean (checkbox) // Boolean (checkbox)
if ($setting->tipo == 'boolean') { if ($setting->tipo == 'boolean') {
@ -107,15 +105,12 @@ class Settings
// verifico che il valore scelto sia nella lista enumerata nel db // verifico che il valore scelto sia nella lista enumerata nel db
elseif (preg_match("/list\[(.+?)\]/", $setting->tipo, $m)) { elseif (preg_match("/list\[(.+?)\]/", $setting->tipo, $m)) {
$validator = v::in(explode(',', $m[1])); $validator = v::in(explode(',', $m[1]));
} }
// multiple // multiple
// verifico che il valore scelto sia nella lista enumerata nel db // verifico che il valore scelto sia nella lista enumerata nel db
elseif (preg_match("/multiple\[(.+?)\]/", $setting->tipo, $m[0][0])) { elseif (preg_match("/multiple\[(.+?)\]/", $setting->tipo, $m[0][0])) {
//$validator = v::in(explode(',', $m[0][0][1])); //$validator = v::in(explode(',', $m[0][0][1]));
} }
// Boolean (checkbox) // Boolean (checkbox)

View File

@ -21,14 +21,14 @@ echo '
<tr> <tr>
<td colspan="2">'; <td colspan="2">';
if (dateFormat($intervento->inizio)){ if (dateFormat($intervento->inizio)) {
echo ' echo '
<p>'.tr('Intervento _NUM_ del _DATE_', [ <p>'.tr('Intervento _NUM_ del _DATE_', [
'_NUM_' => $intervento->codice, '_NUM_' => $intervento->codice,
'_DATE_' => dateFormat($intervento->inizio), '_DATE_' => dateFormat($intervento->inizio),
]).'</p>'; ]).'</p>';
}else{ } else {
echo ' echo '
<p>'.tr('Promemoria _NUM_', [ <p>'.tr('Promemoria _NUM_', [
'_NUM_' => $intervento->codice, '_NUM_' => $intervento->codice,
]).'</p>'; ]).'</p>';
@ -46,7 +46,7 @@ echo '
// Sessioni // Sessioni
$sessioni = $intervento->sessioni; $sessioni = $intervento->sessioni;
if (count($sessioni)>0) { if (count($sessioni) > 0) {
echo ' echo '
<tr> <tr>
<td style="border-top: 0; border-bottom: 0;"></td> <td style="border-top: 0; border-bottom: 0;"></td>