99 lines
3.8 KiB
PHP
99 lines
3.8 KiB
PHP
<?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\Anagrafiche\Provenienza;
|
|
|
|
switch (filter('op')) {
|
|
case 'update':
|
|
$descrizione = filter('descrizione');
|
|
$colore = filter('colore');
|
|
|
|
if (isset($descrizione)) {
|
|
$provenienza_new = Provenienza::where('id', '=', (new Provenienza())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first();
|
|
if (empty($provenienza_new)) {
|
|
$provenienza->setTranslation('title', $descrizione);
|
|
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
|
|
$provenienza->name = $descrizione;
|
|
}
|
|
$provenienza->colore = $colore;
|
|
$provenienza->save();
|
|
flash()->info(tr('Salvataggio completato.'));
|
|
} else {
|
|
flash()->error(tr("E' già presente una provenienza _NAME_.", [
|
|
'_NAME_' => $descrizione,
|
|
]));
|
|
}
|
|
} else {
|
|
flash()->error(tr('Ci sono stati alcuni errori durante il salvataggio'));
|
|
}
|
|
|
|
break;
|
|
|
|
case 'add':
|
|
$descrizione = filter('descrizione');
|
|
$colore = filter('colore');
|
|
|
|
if (isset($descrizione)) {
|
|
if (empty(Provenienza::where('id', '=', (new Provenienza())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first())) {
|
|
$provenienza = Provenienza::build();
|
|
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
|
|
$provenienza->name = $descrizione;
|
|
}
|
|
$provenienza->colore = $colore;
|
|
$provenienza->save();
|
|
|
|
$id_record = $dbo->lastInsertedID();
|
|
$provenienza->setTranslation('title', $descrizione);
|
|
$provenienza->save();
|
|
|
|
if (isAjaxRequest()) {
|
|
echo json_encode(['id' => $id_record, 'text' => $descrizione]);
|
|
}
|
|
|
|
flash()->info(tr('Aggiunta nuova provenienza _NAME_', [
|
|
'_NAME_' => $descrizione,
|
|
]));
|
|
} else {
|
|
flash()->error(tr("E' già presente una provenienza di _NAME_.", [
|
|
'_NAME_' => $descrizione,
|
|
]));
|
|
}
|
|
} else {
|
|
flash()->error(tr('Ci sono stati alcuni errori durante il salvataggio'));
|
|
}
|
|
|
|
break;
|
|
|
|
case 'delete':
|
|
$righe = $dbo->fetchNum('SELECT idanagrafica FROM an_anagrafiche WHERE id_provenienza='.prepare($id_record));
|
|
|
|
if ((!empty($id_record)) && empty($righe)) {
|
|
$dbo->query('DELETE FROM `an_provenienze` WHERE `id`='.prepare($id_record));
|
|
flash()->info(tr('Provenienza _NAME_ eliminata con successo!', [
|
|
'_NAME_' => $descrizione,
|
|
]));
|
|
} else {
|
|
flash()->error(tr('Sono presenti '.count($righe).' anagrafiche collegate a questa provenienza.'));
|
|
}
|
|
|
|
break;
|
|
}
|