openstamanager/modules/tipi_documento/actions.php

108 lines
4.5 KiB
PHP
Raw Normal View History

2020-12-29 00:39:30 +01:00
<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright (C) DevCode s.r.l.
2020-12-29 00:39:30 +01:00
*
* 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';
2024-03-07 10:10:42 +01:00
use Modules\Fatture\Tipo;
2020-12-29 00:39:30 +01:00
switch (filter('op')) {
case 'update':
$descrizione = filter('descrizione');
$dir = filter('dir');
$codice_tipo_documento_fe = filter('codice_tipo_documento_fe');
2024-03-07 10:10:42 +01:00
$predefined = post('predefined');
2024-04-18 17:44:05 +02:00
$tipo_new = Tipo::where('id', '=', (new Tipo())->getByField('title', $descrizione))->where('dir', '=', $dir)->where('codice_tipo_documento_fe', '=', $codice_tipo_documento_fe)->first();
2020-12-29 00:39:30 +01:00
if (isset($descrizione) && isset($dir) && isset($codice_tipo_documento_fe)) {
2024-03-22 15:52:24 +01:00
if (!empty($tipo_new) && $tipo_new->id != $id_record) {
2024-03-07 10:10:42 +01:00
flash()->error(tr('Questa combinazione di nome, codice e direzione è già stata utilizzata per un altro tipo di documento.'));
} else {
2020-12-29 00:39:30 +01:00
if (!empty($predefined)) {
2024-02-26 15:53:39 +01:00
$dbo->query('UPDATE `co_tipidocumento` SET `predefined` = 0 WHERE `dir` = '.prepare($dir));
2020-12-29 00:39:30 +01:00
}
2024-04-19 16:44:08 +02:00
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$tipo->name = $descrizione;
}
2024-03-07 10:10:42 +01:00
$tipo->dir = $dir;
$tipo->codice_tipo_documento_fe = $codice_tipo_documento_fe;
$tipo->help = filter('help');
$tipo->predefined = $predefined;
$tipo->enabled = post('enabled');
$tipo->id_segment = post('id_segment');
2024-04-18 17:44:05 +02:00
$tipo->setTranslation('title', $descrizione);
2024-03-07 10:10:42 +01:00
$tipo->save();
2024-02-26 15:53:39 +01:00
2020-12-29 00:39:30 +01:00
flash()->info(tr('Salvataggio completato!'));
}
}
2024-03-22 15:52:24 +01:00
2020-12-29 00:39:30 +01:00
break;
case 'add':
$descrizione = filter('descrizione');
$dir = filter('dir');
$codice_tipo_documento_fe = filter('codice_tipo_documento_fe');
2024-04-18 17:44:05 +02:00
$tipo_new = Tipo::where('id', '=', (new Tipo())->getByField('title', $descrizione))->where('dir', '=', $dir)->where('codice_tipo_documento_fe', '=', $codice_tipo_documento_fe)->first();
2020-12-29 00:39:30 +01:00
if (isset($descrizione) && isset($dir) && isset($codice_tipo_documento_fe)) {
2024-03-22 15:52:24 +01:00
if (!empty($tipo_new) && $tipo_new->id != $id_record) {
2024-03-07 10:10:42 +01:00
flash()->error(tr('Questa combinazione di nome, codice e direzione è già stata utilizzata per un altro tipo di documento.'));
} else {
$tipo = Tipo::build($dir, $codice_tipo_documento_fe);
2024-04-19 16:44:08 +02:00
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$tipo->name = $descrizione;
}
2020-12-29 00:39:30 +01:00
$id_record = $dbo->lastInsertedID();
2024-04-18 17:44:05 +02:00
$tipo->setTranslation('title', $descrizione);
2024-03-07 10:10:42 +01:00
$tipo->save();
2024-02-26 15:53:39 +01:00
2020-12-29 00:39:30 +01:00
if (isAjaxRequest()) {
echo json_encode(['id' => $id_record, 'text' => $descrizione]);
}
flash()->info(tr('Aggiunta nuova tipologia di _TYPE_', [
'_TYPE_' => 'tipo documento',
]));
}
}
break;
case 'delete':
2024-02-26 15:53:39 +01:00
$documenti = $dbo->fetchNum('SELECT `id` FROM `co_documenti` WHERE `idtipodocumento` ='.prepare($id_record));
2020-12-29 00:39:30 +01:00
2024-04-12 16:59:19 +02:00
if ((!empty($id_record)) && empty($documenti)) {
2020-12-29 00:39:30 +01:00
$dbo->query('DELETE FROM `co_tipidocumento` WHERE `id`='.prepare($id_record));
flash()->info(tr('Tipologia di _TYPE_ eliminata con successo.', [
'_TYPE_' => 'tipo documento',
]));
} else {
$dbo->update('co_tipidocumento', [
'deleted_at' => date(),
2020-12-29 01:11:11 +01:00
'predefined' => 0,
'enabled' => 0,
2020-12-29 00:39:30 +01:00
], ['id' => $id_record]);
flash()->info(tr('Tipologia di _TYPE_ eliminata con successo.', [
'_TYPE_' => 'tipo documento',
]));
}
break;
2021-02-18 18:48:44 +01:00
}