2019-03-28 19:00:00 +01:00
|
|
|
<?php
|
2020-09-07 15:04:06 +02:00
|
|
|
/*
|
|
|
|
* 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-09-07 15:04:06 +02: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/>.
|
|
|
|
*/
|
2019-03-28 19:00:00 +01:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
2024-02-09 12:08:55 +01:00
|
|
|
use Modules\Contratti\Stato;
|
|
|
|
|
2019-03-28 19:00:00 +01:00
|
|
|
switch (post('op')) {
|
|
|
|
case 'update':
|
2024-02-09 12:08:55 +01:00
|
|
|
$id_stato = (new Stato())->getByName(post('descrizione'))->id_record;
|
2019-03-28 19:00:00 +01:00
|
|
|
$dbo->update('co_staticontratti', [
|
|
|
|
'icona' => post('icona'),
|
2023-09-27 17:04:00 +02:00
|
|
|
'colore' => post('colore'),
|
2019-03-28 19:00:00 +01:00
|
|
|
'is_completato' => post('is_completato') ?: null,
|
|
|
|
'is_fatturabile' => post('is_fatturabile') ?: null,
|
|
|
|
'is_pianificabile' => post('is_pianificabile') ?: null,
|
|
|
|
], ['id' => $id_record]);
|
|
|
|
|
2024-02-09 12:08:55 +01:00
|
|
|
$dbo->update('co_staticontratti_lang', [
|
|
|
|
'name' => post('descrizione'),
|
|
|
|
], ['id_record' => $id_stato]);
|
|
|
|
|
2019-03-28 19:00:00 +01:00
|
|
|
flash()->info(tr('Informazioni salvate correttamente.'));
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'add':
|
|
|
|
$descrizione = post('descrizione');
|
|
|
|
$icona = post('icona');
|
2023-09-27 17:04:00 +02:00
|
|
|
$colore = post('colore');
|
2019-04-04 17:30:58 +02:00
|
|
|
$is_completato = post('is_completato') ?: null;
|
|
|
|
$is_fatturabile = post('is_fatturabile') ?: null;
|
|
|
|
$is_pianificabile = post('is_pianificabile') ?: null;
|
2019-03-28 19:00:00 +01:00
|
|
|
|
2024-01-15 15:30:45 +01:00
|
|
|
// controlla descrizione che non sia duplicata
|
2024-02-09 12:08:55 +01:00
|
|
|
if ((new Stato())->getByName($descrizione)->id_record) {
|
|
|
|
flash()->error(tr('Questo nome è già stato utilizzato per un altro stato dei contratti.'));
|
2019-03-28 19:00:00 +01:00
|
|
|
} else {
|
2024-02-09 12:08:55 +01:00
|
|
|
$dbo->query('INSERT INTO `co_staticontratti` (`icona`, `colore`, `is_completato`, `is_fatturabile`, `is_pianificabile`) VALUES ('.prepare($icona).', '.prepare($colore).', '.prepare($is_completato).', '.prepare($is_fatturabile).', '.prepare($is_pianificabile).' )');
|
2019-03-28 19:00:00 +01:00
|
|
|
$id_record = $dbo->lastInsertedID();
|
2024-02-09 12:08:55 +01:00
|
|
|
$dbo->query('INSERT INTO `co_staticontratti_lang` (`name`, `id_record`, `id_lang`) VALUES ('.prepare($descrizione).', '.prepare($id_record).', '.prepare(setting('Lingua')).' )');
|
|
|
|
|
2019-03-28 19:00:00 +01:00
|
|
|
flash()->info(tr('Nuovo stato contratto 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 nei contratti
|
2024-02-09 12:08:55 +01:00
|
|
|
if (count($dbo->fetchArray('SELECT `id` FROM `co_contratti` WHERE `idstato`='.prepare($id_record))) > 0) {
|
|
|
|
$query = 'UPDATE `co_staticontratti` SET `deleted_at` = NOW() WHERE `can_delete` = 1 AND `id`='.prepare($id_record);
|
2019-03-28 19:00:00 +01:00
|
|
|
} else {
|
2024-02-09 12:08:55 +01:00
|
|
|
$query = 'DELETE FROM `co_staticontratti` WHERE `can_delete` = 1 AND `id`='.prepare($id_record);
|
2019-03-28 19:00:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$dbo->query($query);
|
|
|
|
|
2024-02-09 12:08:55 +01:00
|
|
|
flash()->info(tr('Questo stato dei contratti è stato correttamente eliminato.'));
|
2019-03-28 19:00:00 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|