2017-08-04 16:28:16 +02: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/>.
|
|
|
|
*/
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
|
|
|
switch (filter('op')) {
|
|
|
|
case 'update':
|
|
|
|
$descrizione = filter('descrizione');
|
|
|
|
|
2018-09-26 10:49:38 +02:00
|
|
|
if ($dbo->fetchNum('SELECT * FROM `dt_porto` WHERE `descrizione`='.prepare($descrizione).' AND `id`!='.prepare($id_record)) == 0) {
|
|
|
|
$predefined = post('predefined');
|
|
|
|
if (!empty($predefined)) {
|
|
|
|
$dbo->query('UPDATE dt_porto SET predefined = 0');
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
2018-09-26 10:49:38 +02:00
|
|
|
|
|
|
|
$dbo->update('dt_porto', [
|
|
|
|
'descrizione' => $descrizione,
|
|
|
|
'predefined' => $predefined,
|
|
|
|
], ['id' => $id_record]);
|
|
|
|
|
|
|
|
flash()->info(tr('Salvataggio completato!'));
|
2017-08-04 16:28:16 +02:00
|
|
|
} else {
|
2018-09-26 10:49:38 +02:00
|
|
|
flash()->error(tr("E' già presente una tipologia di _TYPE_ con la stessa descrizione", [
|
|
|
|
'_TYPE_' => 'porto',
|
|
|
|
]));
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'add':
|
|
|
|
$descrizione = filter('descrizione');
|
|
|
|
|
2018-09-26 10:49:38 +02:00
|
|
|
if ($dbo->fetchNum('SELECT * FROM `dt_porto` WHERE `descrizione`='.prepare($descrizione)) == 0) {
|
|
|
|
$dbo->insert('dt_porto', [
|
|
|
|
'descrizione' => $descrizione,
|
|
|
|
]);
|
|
|
|
$id_record = $dbo->lastInsertedID();
|
|
|
|
|
|
|
|
flash()->info(tr('Aggiunta nuova tipologia di _TYPE_', [
|
|
|
|
'_TYPE_' => 'porto',
|
|
|
|
]));
|
2017-08-04 16:28:16 +02:00
|
|
|
} else {
|
2018-09-26 10:49:38 +02:00
|
|
|
flash()->error(tr("E' già presente una tipologia di _TYPE_ con la stessa descrizione", [
|
|
|
|
'_TYPE_' => 'porto',
|
|
|
|
]));
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'delete':
|
2018-03-27 23:52:07 +02:00
|
|
|
$documenti = $dbo->fetchNum('SELECT id FROM dt_ddt WHERE idporto='.prepare($id_record).'
|
2018-09-26 10:49:38 +02:00
|
|
|
UNION SELECT id FROM co_documenti WHERE idporto='.prepare($id_record).'
|
|
|
|
UNION SELECT id FROM co_preventivi WHERE idporto='.prepare($id_record));
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-03-27 23:52:07 +02:00
|
|
|
if (isset($id_record) && empty($documenti)) {
|
2017-08-04 16:28:16 +02:00
|
|
|
$dbo->query('DELETE FROM `dt_porto` WHERE `id`='.prepare($id_record));
|
2018-07-07 13:56:22 +02:00
|
|
|
|
2018-07-19 17:29:21 +02:00
|
|
|
flash()->info(tr('Tipologia di _TYPE_ eliminata con successo!', [
|
2017-09-10 14:35:41 +02:00
|
|
|
'_TYPE_' => 'porto',
|
2018-07-07 13:56:22 +02:00
|
|
|
]));
|
2017-09-10 14:35:41 +02:00
|
|
|
} else {
|
2018-07-19 17:29:21 +02:00
|
|
|
flash()->error(tr('Sono presenti dei documenti collegati a questo porto.'));
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|