Miglioramento supporto ad allegati
Aggiunto messaggio informativo sulle eventuali personalizzazioni nel modulo Aggiornamenti.
This commit is contained in:
parent
a4a6a88be6
commit
7a91a1d76b
|
@ -2,6 +2,60 @@
|
|||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
// Personalizzazioni di codice
|
||||
$custom = custom();
|
||||
$tables = customTables();
|
||||
if (!empty($custom) || !empty($tables)) {
|
||||
echo '
|
||||
<div class="box box-warning">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title"><span class="tip" title="'.tr('Elenco delle personalizzazioni rilevabili dal gestionale').'.">
|
||||
<i class="fa fa-edit"></i> '.tr('Personalizzazioni').'
|
||||
</span></h3>
|
||||
</div>
|
||||
<div class="box-body">';
|
||||
|
||||
if (!empty($custom)) {
|
||||
echo '
|
||||
<table class="table table-hover table-striped">
|
||||
<tr>
|
||||
<th width="10%">'.tr('Percorso').'</th>
|
||||
<th width="15%">'.tr('Cartella personalizzata').'</th>
|
||||
<th width="15%">'.tr('Database personalizzato').'</th>
|
||||
</tr>';
|
||||
|
||||
foreach ($custom as $element) {
|
||||
echo '
|
||||
<tr>
|
||||
<td>'.$element['path'].'</td>
|
||||
<td>'.($element['directory'] ? 'Si' : 'No').'</td>
|
||||
<td>'.($element['database'] ? 'Si' : 'No').'</td>
|
||||
</tr>';
|
||||
}
|
||||
|
||||
echo '
|
||||
</table>
|
||||
|
||||
<p><strong>'.tr("Si sconsiglia l'aggiornamento senza il supporto dell'assistenza ufficiale").'.</strong></p>';
|
||||
} else {
|
||||
echo '
|
||||
<p>'.tr('Non ci sono strutture personalizzate').'.</p>';
|
||||
}
|
||||
|
||||
if (!empty($tables)) {
|
||||
echo '
|
||||
<div class="alert alert-warning">
|
||||
<i class="fa fa-warning"></i>
|
||||
<b>Attenzione!</b> Ci sono delle tabelle non previste nella versione standard del gestionale: '.implode(', ', $tables).'.
|
||||
</div>';
|
||||
}
|
||||
|
||||
echo '
|
||||
</div>
|
||||
</div>';
|
||||
}
|
||||
|
||||
// Aggiornamenti
|
||||
if (setting('Attiva aggiornamenti')) {
|
||||
$alerts = [];
|
||||
|
||||
|
@ -148,70 +202,7 @@ $modules = Modules::getHierarchy();
|
|||
|
||||
$osm_version = Update::getVersion();
|
||||
|
||||
foreach ($modules as $module) {
|
||||
// STATO
|
||||
if (!empty($module['enabled'])) {
|
||||
$text = tr('Abilitato');
|
||||
$text .= ($module['id'] != $id_module) ? '. '.tr('Clicca per disabilitarlo').'...' : '';
|
||||
$stato = '<i class="fa fa-cog fa-spin text-success" data-toggle="tooltip" title="'.$text.'"></i>';
|
||||
} else {
|
||||
$stato = '<i class="fa fa-cog text-warning" data-toggle="tooltip" title="'.tr('Non abilitato').'"></i>';
|
||||
$class = 'warning';
|
||||
}
|
||||
|
||||
// Possibilità di disabilitare o abilitare i moduli tranne quello degli aggiornamenti
|
||||
if ($module['id'] != $id_module) {
|
||||
if ($module['enabled']) {
|
||||
$stato = "<a href='javascript:;' onclick=\"if( confirm('".tr('Disabilitare questo modulo?')."') ){ $.post( '".ROOTDIR.'/actions.php?id_module='.$id_module."', { op: 'disable', id: '".$module['id']."' }, function(response){ location.href='".ROOTDIR.'/controller.php?id_module='.$id_module."'; }); }\">".$stato."</a>\n";
|
||||
} else {
|
||||
$stato = "<a href='javascript:;' onclick=\"if( confirm('".tr('Abilitare questo modulo?')."') ){ $.post( '".ROOTDIR.'/actions.php?id_module='.$id_module."', { op: 'enable', id: '".$module['id']."' }, function(response){ location.href='".ROOTDIR.'/controller.php?id_module='.$id_module."'; }); }\"\">".$stato."</a>\n";
|
||||
}
|
||||
}
|
||||
|
||||
// COMPATIBILITA'
|
||||
$compatibilities = explode(',', $module['compatibility']);
|
||||
// Controllo per ogni versione se la regexp combacia per dire che è compatibile o meno
|
||||
$comp = false;
|
||||
foreach ($compatibilities as $compatibility) {
|
||||
$comp = (preg_match('/'.$compatibility.'/', $osm_version)) ? true : $comp;
|
||||
}
|
||||
|
||||
if ($comp) {
|
||||
$compatible = '<i class="fa fa-check-circle text-success" data-toggle="tooltip" title="'.tr('Compatibile').'"></i>';
|
||||
($module['enabled']) ? $class = 'success' : $class = 'warning';
|
||||
} else {
|
||||
$compatible = '<i class="fa fa-warning text-danger" data-toggle="tooltip" title="'.tr('Non compatibile!').tr('Questo modulo è compatibile solo con le versioni').': '.$module['compatibility'].'"></i>';
|
||||
$class = 'danger';
|
||||
}
|
||||
|
||||
echo '
|
||||
<tr class="'.$class.'">
|
||||
<td>'.$module['title'].'</td>
|
||||
<td align="right">'.$module['version'].'</td>
|
||||
<td align="center">'.$stato.'</td>
|
||||
<td align="center">'.$compatible.'</td>';
|
||||
|
||||
echo '
|
||||
<td>';
|
||||
|
||||
// Possibilità di disinstallare solo se il modulo non è tra quelli predefiniti
|
||||
if (empty($module['default'])) {
|
||||
echo "
|
||||
<a href=\"javascript:;\" data-toggle='tooltip' title=\"".tr('Disinstalla')."...\" onclick=\"if( confirm('".tr('Vuoi disinstallare questo modulo?').' '.tr('Tutti i dati salvati andranno persi!')."') ){ if( confirm('".tr('Sei veramente sicuro?')."') ){ $.post( '".ROOTDIR.'/actions.php?id_module='.$id_module."', { op: 'uninstall', id: '".$module['id']."' }, function(response){ location.href='".ROOTDIR.'/controller.php?id_module='.$id_module."'; }); } }\"><i class='fa fa-trash'></i></a>";
|
||||
} else {
|
||||
echo "
|
||||
<a class='disabled text-muted'>
|
||||
<i class='fa fa-trash'></i>
|
||||
</a>";
|
||||
}
|
||||
|
||||
echo '
|
||||
</td>
|
||||
</tr>';
|
||||
|
||||
// Prima di cambiare modulo verifico se ci sono sottomoduli
|
||||
echo submodules($module['all_children']);
|
||||
}
|
||||
echo submodules($modules);
|
||||
|
||||
echo '
|
||||
</table>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
function submodules($list, $depth = 1)
|
||||
function submodules($list, $depth = 0)
|
||||
{
|
||||
$osm_version = Update::getVersion();
|
||||
|
||||
|
@ -77,3 +77,102 @@ function submodules($list, $depth = 1)
|
|||
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Controlla se il database presenta alcune sezioni personlizzate.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
function customStructure()
|
||||
{
|
||||
$results = [];
|
||||
|
||||
$dirs = [
|
||||
'modules',
|
||||
'templates',
|
||||
'plugins',
|
||||
];
|
||||
|
||||
// Controlli di personalizzazione fisica
|
||||
foreach ($dirs as $dir) {
|
||||
$files = glob(DOCROOT.'/'.$dir.'/*/custom/*');
|
||||
foreach ($files as $file) {
|
||||
$file = str_replace(DOCROOT.'/', '', $file);
|
||||
$result = explode('/custom/', $file)[0];
|
||||
|
||||
if (!in_array($result, $results)) {
|
||||
$results[] = $result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $results;
|
||||
}
|
||||
|
||||
/**
|
||||
* Controlla se il database presenta alcune sezioni personlizzate.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
function customTables()
|
||||
{
|
||||
$tables = include DOCROOT.'/update/tables.php';
|
||||
|
||||
$names = [];
|
||||
foreach ($tables as $table) {
|
||||
$names[] = prepare($table);
|
||||
}
|
||||
|
||||
$database = database();
|
||||
|
||||
$results = $database->fetchArray('SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = '.prepare($database->getDatabaseName()).' AND TABLE_NAME NOT IN ('.implode(',', $names).") AND TABLE_NAME != 'updates'");
|
||||
|
||||
return array_column($results, 'TABLE_NAME');
|
||||
}
|
||||
|
||||
/**
|
||||
* Controlla se il database presenta alcune sezioni personlizzate.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
function customDatabase()
|
||||
{
|
||||
$database = database();
|
||||
$modules = $database->fetchArray("SELECT name, CONCAT('modules/', directory) AS directory FROM zz_modules WHERE options2 != ''");
|
||||
$plugins = $database->fetchArray("SELECT name, CONCAT('plugins/', directory) AS directory FROM zz_plugins WHERE options2 != ''");
|
||||
|
||||
$results = array_merge($modules, $plugins);
|
||||
|
||||
return $results;
|
||||
}
|
||||
|
||||
function custom()
|
||||
{
|
||||
$database_check = customDatabase();
|
||||
$structure_check = customStructure();
|
||||
|
||||
$list = [];
|
||||
foreach ($database_check as $element) {
|
||||
$pos = array_search($element['directory'], $structure_check);
|
||||
|
||||
$list[] = [
|
||||
'path' => $element['directory'],
|
||||
'database' => true,
|
||||
'directory' => $pos !== false,
|
||||
];
|
||||
|
||||
if ($pos !== false) {
|
||||
unset($structure_check[$pos]);
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($structure_check as $element) {
|
||||
$list[] = [
|
||||
'path' => $element,
|
||||
'database' => false,
|
||||
'directory' => true,
|
||||
];
|
||||
}
|
||||
|
||||
return $list;
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ use Plugins\ImportFE\Interaction;
|
|||
|
||||
echo '
|
||||
<script>
|
||||
function upload() {
|
||||
function upload(btn) {
|
||||
if ($("#blob").val()) {
|
||||
swal({
|
||||
title: "'.tr('Avviare la procedura?').'",
|
||||
|
@ -14,6 +14,8 @@ echo '
|
|||
showCancelButton: true,
|
||||
confirmButtonText: "'.tr('Sì').'"
|
||||
}).then(function (result) {
|
||||
var restore = buttonLoading(btn);
|
||||
|
||||
$("#upload").ajaxSubmit({
|
||||
url: globals.rootdir + "/actions.php",
|
||||
data: {
|
||||
|
@ -34,9 +36,12 @@ echo '
|
|||
})
|
||||
}
|
||||
|
||||
buttonRestore(btn, restore);
|
||||
},
|
||||
error: function(data) {
|
||||
alert("'.tr('Errore').': " + data);
|
||||
|
||||
buttonRestore(btn, restore);
|
||||
}
|
||||
});
|
||||
})
|
||||
|
@ -62,7 +67,7 @@ echo '
|
|||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<button type="button" class="btn btn-primary btn-lg pull-right" onclick="upload()">
|
||||
<button type="button" class="btn btn-primary btn-lg pull-right" onclick="upload(this)">
|
||||
<i class="fa fa-upload"></i> '.tr('Carica').'...
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
@ -256,7 +256,13 @@ class FatturaElettronica
|
|||
|
||||
foreach ($allegati as $allegato) {
|
||||
$content = base64_decode($allegato['Attachment']);
|
||||
$original = $allegato['NomeAttachment'].'.'.strtolower($allegato['FormatoAttachment']);
|
||||
|
||||
$extension = '';
|
||||
if (!empty($allegato['FormatoAttachment'])) {
|
||||
$extension = '.'.strtolower($allegato['FormatoAttachment']);
|
||||
}
|
||||
|
||||
$original = $allegato['NomeAttachment'].$extension;
|
||||
$filename = Uploads::getName($original, [
|
||||
'id_module' => $module['id'],
|
||||
]);
|
||||
|
|
|
@ -52,6 +52,7 @@ return [
|
|||
'fe_modalita_pagamento',
|
||||
'fe_natura',
|
||||
'fe_regime_fiscale',
|
||||
'fe_stati_documento',
|
||||
'fe_tipi_documento',
|
||||
'fe_tipo_cassa',
|
||||
'in_interventi',
|
||||
|
|
Loading…
Reference in New Issue