openstamanager/modules/spedizioni/actions.php

99 lines
3.9 KiB
PHP
Raw Normal View History

2018-09-26 10:49:38 +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/>.
*/
2018-09-26 10:49:38 +02:00
include_once __DIR__.'/../../core.php';
2024-04-19 16:44:08 +02:00
use Modules\DDT\Spedizione;
2018-09-26 10:49:38 +02:00
switch (filter('op')) {
case 'update':
$descrizione = filter('descrizione');
$vettore = post('esterno');
2024-02-27 11:57:42 +01:00
$predefined = post('predefined');
2018-09-26 10:49:38 +02:00
2024-04-19 16:44:08 +02:00
if (isset($descrizione)) {
$spedizione_new = Spedizione::where('id', '=', (new Spedizione())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first();
if (empty($spedizione_new)) {
$spedizione->setTranslation('title', $descrizione);
if (!empty($predefined)) {
$dbo->query('UPDATE `dt_spedizione` SET `predefined` = 0');
}
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$spedizione->name = $descrizione;
}
$spedizione->predefined = $predefined;
$spedizione->esterno = $vettore;
$spedizione->save();
flash()->info(tr('Salvataggio completato.'));
} else {
flash()->error(tr("E' già presente una spedizione con questo nome."));
2018-09-26 10:49:38 +02:00
}
} else {
2024-04-19 16:44:08 +02:00
flash()->error(tr('Ci sono stati alcuni errori durante il salvataggio'));
2018-09-26 10:49:38 +02:00
}
break;
case 'add':
$descrizione = filter('descrizione');
2024-04-19 16:44:08 +02:00
if (isset($descrizione)) {
if (empty(Spedizione::where('id', '=', (new Spedizione())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first())) {
$spedizione = Spedizione::build();
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$spedizione->name = $descrizione;
}
$spedizione->save();
$id_record = $dbo->lastInsertedID();
$spedizione->setTranslation('title', $descrizione);
$spedizione->save();
2018-09-26 10:49:38 +02:00
2024-04-19 16:44:08 +02:00
if (isAjaxRequest()) {
echo json_encode(['id' => $id_record, 'text' => $descrizione]);
}
2024-02-27 11:57:42 +01:00
2024-04-19 16:44:08 +02:00
flash()->info(tr('Aggiunta nuova spedizione _NAME_', [
'_NAME_' => $descrizione,
]));
} else {
flash()->error(tr("E' già presente un spedizione con questo nome."));
}
2018-09-26 10:49:38 +02:00
} else {
2024-04-19 16:44:08 +02:00
flash()->error(tr('Ci sono stati alcuni errori durante il salvataggio'));
2018-09-26 10:49:38 +02:00
}
break;
case 'delete':
2024-02-27 11:57:42 +01:00
$documenti = $dbo->fetchNum('SELECT `id` FROM `dt_ddt` WHERE `idspedizione`='.prepare($id_record).'
UNION SELECT `id` FROM `co_documenti` WHERE `idspedizione`='.prepare($id_record));
2018-09-26 10:49:38 +02:00
2024-04-12 16:59:19 +02:00
if ((!empty($id_record)) && empty($documenti)) {
2018-09-26 10:49:38 +02:00
$dbo->query('DELETE FROM `dt_spedizione` WHERE `id`='.prepare($id_record));
flash()->info(tr('Tipologia di _TYPE_ eliminata con successo!', [
'_TYPE_' => 'spedizione',
]));
} else {
2024-04-19 16:44:08 +02:00
flash()->error(tr('Sono presenti dei documenti collegati a questo spedizione.'));
2018-09-26 10:49:38 +02:00
}
break;
}