134 lines
5.8 KiB
PHP
Executable File
134 lines
5.8 KiB
PHP
Executable File
<?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 Models\Module;
|
|
use Modules\Scadenzario\Tipo;
|
|
|
|
switch (filter('op')) {
|
|
case 'update':
|
|
$descrizione = filter('descrizione');
|
|
$nome = filter('nome');
|
|
|
|
if (isset($nome)) {
|
|
// Se non esiste già una tipo di scadenza con lo stesso nome
|
|
$nome_new = Tipo::where('id', '=', (new Tipo())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first();
|
|
$nome_prev = $tipo->getTranslation('title');
|
|
if (empty($nome_new)) {
|
|
// nome_prev
|
|
$tipo->setTranslation('title', $descrizione);
|
|
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
|
|
$tipo->name = $nome;
|
|
}
|
|
$tipo->save();
|
|
flash()->info(tr('Salvataggio completato.'));
|
|
|
|
$segmento = $dbo->fetchOne('SELECT `zz_segments`.`id` FROM `zz_segments` LEFT JOIN `zz_segments_lang` ON (`zz_segments_lang`.`id_record` = `zz_segments`.`id` AND `zz_segments_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).') WHERE `id_module` = '.prepare((new Module())->getByField('title', 'Scadenzario', Models\Locale::getPredefined()->id)).' AND `clause` = "co_scadenziario.tipo=\''.$nome_prev.'\'" AND `zz_segments_lang`.`title` = "Scadenzario '.$nome_prev.'"')['id'];
|
|
|
|
// aggiorno anche il segmento
|
|
$dbo->update('zz_segments', [
|
|
'clause' => 'co_scadenziario.tipo="'.$nome.'"',
|
|
], [
|
|
'id' => $segmento,
|
|
]);
|
|
|
|
$dbo->update('zz_segments_lang', [
|
|
'title' => 'Scadenzario '.$nome,
|
|
], [
|
|
'id_record' => $segmento,
|
|
'id_lang' => Models\Locale::getDefault()->id,
|
|
]);
|
|
|
|
flash()->info(tr('Salvataggio completato!'));
|
|
} else {
|
|
flash()->error(tr("E' già presente una tipologia di _TYPE_ con nome: _NOME_", [
|
|
'_TYPE_' => 'scadenza',
|
|
'_NOME_' => $nome,
|
|
]));
|
|
}
|
|
} else {
|
|
flash()->error(tr('Ci sono stati alcuni errori durante il salvataggio'));
|
|
}
|
|
|
|
break;
|
|
|
|
case 'add':
|
|
$descrizione = filter('descrizione');
|
|
$nome = filter('nome');
|
|
|
|
if (isset($nome)) {
|
|
// Se non esiste già un tipo di scadenza con lo stesso nome
|
|
if (empty(Tipo::where('id', '=', (new Tipo())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first())) {
|
|
$tipo = Tipo::build();
|
|
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
|
|
$tipo->name = $nome;
|
|
}
|
|
$tipo->save();
|
|
|
|
$id_record = $dbo->lastInsertedID();
|
|
$tipo->setTranslation('title', $descrizione);
|
|
$tipo->save();
|
|
|
|
// Aggiungo anche il segmento
|
|
$dbo->insert('zz_segments', [
|
|
'id_module' => (new Module())->getByField('title', 'Scadenzario', Models\Locale::getPredefined()->id),
|
|
'clause' => 'co_scadenziario.tipo="'.$nome.'"',
|
|
'position' => 'WHR',
|
|
]);
|
|
$id_segment = $dbo->lastInsertedID();
|
|
$dbo->insert('zz_segments_lang', [
|
|
'title' => 'Scadenzario '.$nome,
|
|
'id_record' => $id_segment,
|
|
'id_lang' => Models\Locale::getDefault()->id,
|
|
]);
|
|
|
|
if (isAjaxRequest()) {
|
|
echo json_encode(['id' => $id_record, 'text' => $descrizione]);
|
|
}
|
|
|
|
flash()->info(tr('Aggiunta nuova tipologia di _TYPE_', [
|
|
'_TYPE_' => 'scadenza',
|
|
]));
|
|
} else {
|
|
flash()->error(tr("E' già presente una tipologia di _TYPE_ con nome: _NOME_", [
|
|
'_TYPE_' => 'scadenza',
|
|
'_NOME_' => $nome,
|
|
]));
|
|
}
|
|
} else {
|
|
flash()->error(tr('Ci sono stati alcuni errori durante il salvataggio'));
|
|
}
|
|
|
|
break;
|
|
|
|
case 'delete':
|
|
$documenti = $dbo->fetchNum('SELECT `id` FROM `co_scadenziario` WHERE `tipo` = (SELECT `title` FROM `co_tipi_scadenze` LEFT JOIN `co_tipi_scadenze_lang` ON (`co_tipi_scadenze_lang`.`id_record` = `co_tipi_scadenze`.`id` AND `co_tipi_scadenze_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).') WHERE `co_tipi_scadenze`.`id` = '.prepare($id_record).')');
|
|
|
|
if ((!empty($id_record)) && empty($documenti)) {
|
|
$dbo->query('DELETE FROM `co_tipi_scadenze` WHERE `can_delete` = 1 AND `id`='.prepare($id_record));
|
|
flash()->info(tr('Tipologia di _TYPE_ eliminata con successo.', [
|
|
'_TYPE_' => 'scadenza',
|
|
]));
|
|
} else {
|
|
flash()->error(tr('Sono presenti delle scadenze collegate a questo tipo di scadenza'));
|
|
}
|
|
|
|
break;
|
|
}
|