2023-07-24 17:27:27 +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';
|
|
|
|
|
2024-03-01 11:32:13 +01:00
|
|
|
use Modules\Ordini\Stato;
|
|
|
|
|
2023-07-24 17:27:27 +02:00
|
|
|
switch (post('op')) {
|
|
|
|
case 'update':
|
2024-03-07 16:46:41 +01:00
|
|
|
$descrizione = post('descrizione');
|
2024-03-20 11:13:28 +01:00
|
|
|
$stato_new = (new Stato())->getByField('name', $descrizione);
|
2023-07-24 17:27:27 +02:00
|
|
|
|
2024-03-07 16:46:41 +01:00
|
|
|
if (!empty($stato_new) && $stato_new != $id_record){
|
|
|
|
flash()->error(tr('Questo nome è già stato utilizzato per un altro stato attività.'));
|
|
|
|
} else {
|
|
|
|
$stato->icona = post('icona');
|
|
|
|
$stato->colore = post('colore');
|
|
|
|
$stato->completato = post('completato');
|
|
|
|
$stato->is_fatturabile = post('is_fatturabile');
|
|
|
|
$stato->impegnato = post('impegnato');
|
2024-03-20 11:13:28 +01:00
|
|
|
$stato->setTranslation('name', $descrizione);
|
2024-03-07 16:46:41 +01:00
|
|
|
$stato->save();
|
2024-03-01 11:32:13 +01:00
|
|
|
|
2024-03-07 16:46:41 +01:00
|
|
|
flash()->info(tr('Informazioni salvate correttamente.'));
|
|
|
|
}
|
2023-07-24 17:27:27 +02:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'add':
|
|
|
|
$descrizione = post('descrizione');
|
|
|
|
$icona = post('icona');
|
2023-09-27 17:04:00 +02:00
|
|
|
$colore = post('colore');
|
2024-03-07 16:46:41 +01:00
|
|
|
$completato = post('completato');
|
|
|
|
$is_fatturabile = post('is_fatturabile');
|
|
|
|
$impegnato = post('impegnato');
|
|
|
|
|
2024-03-20 11:13:28 +01:00
|
|
|
$stato_new = Stato::find((new Stato())->getByField('name', $descrizione));
|
2023-07-24 17:27:27 +02:00
|
|
|
|
2024-03-07 16:46:41 +01:00
|
|
|
if ($stato_new) {
|
|
|
|
flash()->error(tr('Questo nome è già stato utilizzato per un altro stato ordine.'));
|
2023-07-24 17:27:27 +02:00
|
|
|
} else {
|
2024-03-07 16:46:41 +01:00
|
|
|
$stato = Stato::build($icona, $colore, $completato, $is_fatturabile, $impegnato);
|
|
|
|
$id_record= $dbo->lastInsertedID();
|
2024-03-20 11:13:28 +01:00
|
|
|
$stato->setTranslation('name', $descrizione);
|
2024-03-07 16:46:41 +01:00
|
|
|
$stato->save();
|
2023-07-24 17:27:27 +02:00
|
|
|
flash()->info(tr('Nuovo stato ordine aggiunto.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'delete':
|
2024-01-15 15:30:45 +01:00
|
|
|
// scelgo se settare come eliminato o cancellare direttamente la riga se non è stato utilizzato negli ordini
|
2024-03-01 11:32:13 +01:00
|
|
|
if (count($dbo->fetchArray('SELECT `id` FROM `or_statiordine` WHERE `id`='.prepare($id_record))) > 0) {
|
|
|
|
$query = 'UPDATE `or_statiordine` SET `deleted_at` = NOW() WHERE `can_delete` = 1 AND `id`='.prepare($id_record);
|
2023-07-24 17:27:27 +02:00
|
|
|
} else {
|
2024-03-01 11:32:13 +01:00
|
|
|
$query = 'DELETE FROM `or_statiordine` WHERE `can_delete` = 1 AND `id`='.prepare($id_record);
|
2023-07-24 17:27:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$dbo->query($query);
|
|
|
|
|
|
|
|
flash()->info(tr('Stato ordine eliminato.'));
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|