openstamanager/modules/tipi_anagrafiche/actions.php

74 lines
2.5 KiB
PHP
Raw Normal View History

<?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/>.
*/
include_once __DIR__.'/../../core.php';
use Modules\Anagrafiche\Tipo;
switch (post('op')) {
case 'update':
2024-02-06 14:38:30 +01:00
$id_tipo = post('id_record');
$descrizione = post('descrizione');
$block = ['Cliente', 'Tecnico', 'Azienda', 'Fornitore'];
// Nome accettato
if (!in_array($descrizione, $block)) {
2024-04-18 17:44:05 +02:00
$tipo->setTranslation('title', $descrizione);
2024-04-19 16:44:08 +02:00
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$tipo->name = $descrizione;
}
$tipo->save();
2018-07-19 17:29:21 +02:00
flash()->info(tr('Informazioni salvate correttamente!'));
} else {
// Nome non consentito
2018-07-19 17:29:21 +02:00
flash()->error(tr('Nome non consentito!'));
}
break;
case 'add':
$descrizione = post('descrizione');
if (!empty($descrizione)) {
// Verifico che il nome non sia duplicato
2024-04-18 17:44:05 +02:00
$tipo = Tipo::find((new Tipo())->getByField('title', $descrizione));
if ($tipo) {
2018-07-19 17:29:21 +02:00
flash()->error(tr('Nome già esistente!'));
} else {
$tipo = Tipo::build($descrizione);
2024-04-19 16:44:08 +02:00
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$tipo->name = $descrizione;
}
$id_record = $dbo->lastInsertedID();
2024-04-18 17:44:05 +02:00
$tipo->setTranslation('title', $descrizione);
$tipo->save();
2018-07-19 17:29:21 +02:00
flash()->info(tr('Nuovo tipo di anagrafica aggiunto!'));
}
}
break;
case 'delete':
2024-02-05 17:07:33 +01:00
$query = 'DELETE FROM `an_tipianagrafiche` WHERE `id`='.prepare($id_record);
$dbo->query($query);
2018-07-19 17:29:21 +02:00
flash()->info(tr('Tipo di anagrafica eliminato!'));
break;
}