openstamanager/modules/stati_ddt/actions.php

85 lines
3.1 KiB
PHP
Raw Normal View History

2024-10-23 17:21:23 +02:00
<?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\DDT\Stato;
switch (post('op')) {
case 'update':
$descrizione = post('descrizione');
$stato_new = Stato::where('name', $descrizione)->first()->id;
if (!empty($stato_new) && $stato_new != $id_record) {
flash()->error(tr('Questo nome è già stato utilizzato per un altro stato DDT.'));
} else {
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$stato->name = $descrizione;
}
$stato->icona = post('icona');
$stato->colore = post('colore');
$stato->completato = post('completato');
$stato->is_fatturabile = post('is_fatturabile');
$stato->setTranslation('title', $descrizione);
$stato->save();
flash()->info(tr('Informazioni salvate correttamente.'));
}
break;
case 'add':
$descrizione = post('descrizione');
$icona = post('icona');
$colore = post('colore');
$completato = post('completato_add');
$is_fatturabile = post('is_fatturabile_add');
$stato_new = Stato::where('name', $descrizione)->first();
if ($stato_new) {
flash()->error(tr('Questo nome è già stato utilizzato per un altro stato DDT.'));
} else {
$stato = Stato::build($icona, $colore, $completato, $is_fatturabile);
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$stato->name = $descrizione;
}
$id_record = $dbo->lastInsertedID();
$stato->setTranslation('title', $descrizione);
$stato->save();
flash()->info(tr('Nuovo stato DDT aggiunto.'));
}
break;
case 'delete':
// scelgo se settare come eliminato o cancellare direttamente la riga se non è stato utilizzato negli ordini
if (count($dbo->fetchArray('SELECT `id` FROM `dt_statiddt` WHERE `id`='.prepare($id_record))) > 0) {
$query = 'UPDATE `dt_statiddt` SET `deleted_at` = NOW() WHERE `can_delete` = 1 AND `id`='.prepare($id_record);
} else {
$query = 'DELETE FROM `dt_statiddt` WHERE `can_delete` = 1 AND `id`='.prepare($id_record);
}
$dbo->query($query);
flash()->info(tr('Stato DDT eliminato.'));
break;
}