223 lines
8.6 KiB
PHP
223 lines
8.6 KiB
PHP
<?php
|
|
/*
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
|
* Copyright (C) DevCode s.r.l.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
use Modules\Checklists\Check;
|
|
|
|
$op = post('op');
|
|
|
|
$upload_dir = base_dir().'/files/'.Modules::get('Impianti')['directory'];
|
|
$modulo_categorie_impianti = Modules::get('Categorie impianti');
|
|
|
|
switch ($op) {
|
|
// Aggiorno informazioni di base impianto
|
|
case 'update':
|
|
$matricola = post('matricola');
|
|
|
|
if (!empty($matricola)) {
|
|
$dbo->update('my_impianti', [
|
|
'idanagrafica' => post('idanagrafica'),
|
|
'nome' => post('nome'),
|
|
'matricola' => $matricola,
|
|
'id_categoria' => post('id_categoria') ?: null,
|
|
'id_sottocategoria' => post('id_sottocategoria') ?: null,
|
|
'descrizione' => post('descrizione'),
|
|
'idsede' => post('idsede'),
|
|
'data' => post('data') ?: null,
|
|
'proprietario' => post('proprietario'),
|
|
'palazzo' => post('palazzo'),
|
|
'ubicazione' => post('ubicazione'),
|
|
'idtecnico' => post('idtecnico'),
|
|
'scala' => post('scala'),
|
|
'piano' => post('piano'),
|
|
'interno' => post('interno'),
|
|
'occupante' => post('occupante'),
|
|
], ['id' => $id_record]);
|
|
|
|
flash()->info(tr('Informazioni salvate correttamente!'));
|
|
|
|
// Upload file
|
|
if (!empty($_FILES) && !empty($_FILES['immagine']['name'])) {
|
|
$upload = Uploads::upload($_FILES['immagine'], [
|
|
'name' => 'Immagine',
|
|
'id_module' => $id_module,
|
|
'id_record' => $id_record,
|
|
], [
|
|
'thumbnails' => true,
|
|
]);
|
|
$filename = $upload->filename;
|
|
|
|
if (!empty($filename)) {
|
|
$dbo->update('my_impianti', [
|
|
'immagine' => $filename,
|
|
], [
|
|
'id' => $id_record,
|
|
]);
|
|
} else {
|
|
flash()->warning(tr('Errore durante il caricamento del file in _DIR_!', [
|
|
'_DIR_' => $upload_dir,
|
|
]));
|
|
}
|
|
}
|
|
|
|
// Eliminazione file
|
|
if (post('delete_immagine') !== null) {
|
|
Uploads::delete($record['immagine'], [
|
|
'id_module' => $id_module,
|
|
'id_record' => $id_record,
|
|
]);
|
|
|
|
$dbo->update('my_impianti', [
|
|
'immagine' => null,
|
|
], [
|
|
'id' => $id_record,
|
|
]);
|
|
}
|
|
}
|
|
break;
|
|
|
|
// Aggiungo impianto
|
|
case 'add':
|
|
$matricola = post('matricola');
|
|
$idanagrafica = post('idanagrafica');
|
|
$nome = post('nome');
|
|
$idtecnico = post('idtecnico');
|
|
$idsede = post('idsede');
|
|
$id_categoria = post('id_categoria');
|
|
$id_sottocategoria = post('id_sottocategoria');
|
|
|
|
if (!empty($matricola)) {
|
|
$dbo->insert('my_impianti', [
|
|
'matricola' => $matricola,
|
|
'idanagrafica' => $idanagrafica,
|
|
'nome' => $nome,
|
|
'data' => date('Y-m-d'),
|
|
'idtecnico' => $idtecnico ?: 0,
|
|
'idsede' => $idsede ?: 0,
|
|
'id_categoria' => $id_categoria ?: null,
|
|
'id_sottocategoria' => $id_sottocategoria ?: null,
|
|
]);
|
|
|
|
$id_record = $dbo->lastInsertedID();
|
|
|
|
$checks_categoria = $dbo->fetchArray('SELECT * FROM zz_checks WHERE id_module = '.prepare($modulo_categorie_impianti['id']).' AND id_record = '.prepare($id_categoria));
|
|
foreach ($checks_categoria as $check_categoria) {
|
|
$id_parent_new = null;
|
|
if ($check_categoria['id_parent']) {
|
|
$parent = $dbo->selectOne('zz_checks', '*', ['id' => $check_categoria['id_parent']]);
|
|
$id_parent_new = $dbo->selectOne('zz_checks', '*', ['content' => $parent['content'], 'id_module' => $id_module, 'id_record' => $id_record])['id'];
|
|
}
|
|
$check = Check::build($user, $structure, $id_record, $check_categoria['content'], $id_parent_new, $check_categoria['is_titolo'], $check_categoria['order']);
|
|
$check->id_plugin = null;
|
|
$check->note = $check_categoria['note'];
|
|
$check->save();
|
|
}
|
|
|
|
if (isAjaxRequest()) {
|
|
echo json_encode(['id' => $id_record, 'text' => $matricola.' - '.$nome]);
|
|
}
|
|
|
|
flash()->info(tr('Aggiunto nuovo impianto!'));
|
|
}
|
|
|
|
break;
|
|
|
|
// Carica i campi da compilare del componente
|
|
case 'load_componente':
|
|
$filename = post('filename');
|
|
$idarticolo = post('idarticolo');
|
|
|
|
// Se è stato specificato un idarticolo, carico il file .ini dal campo `contenuto` di quell'idarticolo
|
|
$rs = $dbo->fetchArray('SELECT contenuto, componente_filename FROM mg_articoli WHERE id='.prepare($idarticolo));
|
|
|
|
// Se i campi da caricare sono del componente già salvato leggo dal campo `contenuto`...
|
|
if ($rs[0]['componente_filename'] == $filename) {
|
|
$contenuto = $rs[0]['contenuto'];
|
|
}
|
|
|
|
// ...altrimenti carico dal file .ini
|
|
elseif (file_exists(base_dir().'/files/impianti/'.$filename)) {
|
|
$contenuto = file_get_contents(base_dir().'/files/impianti/'.$filename);
|
|
}
|
|
|
|
crea_form_componente($contenuto);
|
|
|
|
break;
|
|
|
|
// Duplica impianto
|
|
case 'copy':
|
|
$database->beginTransaction();
|
|
$dbo->query('CREATE TEMPORARY TABLE tmp SELECT * FROM my_impianti WHERE id= '.prepare($id_record));
|
|
$dbo->query('ALTER TABLE tmp DROP id');
|
|
$dbo->query('INSERT INTO my_impianti SELECT NULL,tmp. * FROM tmp');
|
|
$id_record = $dbo->lastInsertedID();
|
|
$dbo->query('DROP TEMPORARY TABLE tmp');
|
|
|
|
$dbo->query('UPDATE my_impianti SET matricola = CONCAT (matricola, " (copia)") WHERE id = '.prepare($id_record));
|
|
|
|
flash()->info(tr('Impianto duplicato correttamente!'));
|
|
|
|
break;
|
|
|
|
// Rimuovo impianto e scollego tutti i suoi componenti
|
|
case 'delete':
|
|
$dbo->query('DELETE FROM my_impianti WHERE id='.prepare($id_record));
|
|
|
|
flash()->info(tr('Impianto e relativi componenti eliminati!'));
|
|
break;
|
|
|
|
case 'sync_checklist':
|
|
Check::deleteLinked([
|
|
'id_module' => $id_module,
|
|
'id_record' => $id_record,
|
|
]);
|
|
|
|
$checks_categoria = $dbo->fetchArray('SELECT * FROM zz_checks WHERE id_module = '.prepare($modulo_categorie_impianti['id']).' AND id_record = '.prepare(post('id_categoria')));
|
|
foreach ($checks_categoria as $check_categoria) {
|
|
$id_parent_new = null;
|
|
if ($check_categoria['id_parent']) {
|
|
$parent = $dbo->selectOne('zz_checks', '*', ['id' => $check_categoria['id_parent']]);
|
|
$id_parent_new = $dbo->selectOne('zz_checks', '*', ['content' => $parent['content'], 'id_module' => $id_module, 'id_record' => $id_record])['id'];
|
|
}
|
|
$check = Check::build($user, $structure, $id_record, $check_categoria['content'], $id_parent_new, $check_categoria['is_titolo'], $check_categoria['order']);
|
|
$check->id_plugin = null;
|
|
$check->note = $check_categoria['note'];
|
|
$check->save();
|
|
}
|
|
flash()->info(tr('Checklist importate correttamente!'));
|
|
|
|
break;
|
|
}
|
|
|
|
// Operazioni aggiuntive per l'immagine
|
|
if (filter('op') == 'rimuovi-allegato' && filter('filename') == $record['immagine']) {
|
|
$dbo->update('my_impianti', [
|
|
'immagine' => null,
|
|
], [
|
|
'id' => $id_record,
|
|
]);
|
|
} elseif (filter('op') == 'aggiungi-allegato' && filter('nome_allegato') == 'Immagine') {
|
|
$dbo->update('my_impianti', [
|
|
'immagine' => $upload->filename,
|
|
], [
|
|
'id' => $id_record,
|
|
]);
|
|
}
|