87 lines
3.5 KiB
PHP
Executable File
87 lines
3.5 KiB
PHP
Executable File
<?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';
|
|
|
|
switch (filter('op')) {
|
|
case 'update':
|
|
$valore = filter('valore');
|
|
|
|
if (isset($valore)) {
|
|
if ($dbo->fetchNum('SELECT * FROM `mg_unitamisura` WHERE `valore`='.prepare($valore).' AND `id`!='.prepare($id_record)) == 0) {
|
|
$dbo->query('UPDATE `mg_unitamisura` SET `valore`='.prepare($valore).' WHERE `id`='.prepare($id_record));
|
|
flash()->info(tr('Salvataggio completato.'));
|
|
} else {
|
|
flash()->error(tr("E' già presente una tipologia di _TYPE_ con lo stesso valore.", [
|
|
'_TYPE_' => 'unità di misura',
|
|
]));
|
|
}
|
|
} else {
|
|
flash()->error(tr('Ci sono stati alcuni errori durante il salvataggio'));
|
|
}
|
|
|
|
break;
|
|
|
|
case 'add':
|
|
$valore = filter('valore');
|
|
|
|
if (isset($valore)) {
|
|
if ($dbo->fetchNum('SELECT * FROM `mg_unitamisura` WHERE `valore`='.prepare($valore)) == 0) {
|
|
$dbo->query('INSERT INTO `mg_unitamisura` (`valore`) VALUES ('.prepare($valore).')');
|
|
|
|
$id_record = $dbo->lastInsertedID();
|
|
|
|
if (isAjaxRequest()) {
|
|
echo json_encode(['id' => $valore, 'text' => $valore]);
|
|
}
|
|
|
|
flash()->info(tr('Aggiunta nuova tipologia di _TYPE_', [
|
|
'_TYPE_' => 'unità di misura',
|
|
]));
|
|
} else {
|
|
flash()->error(tr("E' già presente una tipologia di _TYPE_ con lo stesso valore.", [
|
|
'_TYPE_' => 'unità di misura',
|
|
]));
|
|
}
|
|
} else {
|
|
flash()->error(tr('Ci sono stati alcuni errori durante il salvataggio'));
|
|
}
|
|
|
|
break;
|
|
|
|
case 'delete':
|
|
$righe = $dbo->fetchNum('SELECT id FROM co_righe_documenti WHERE um='.prepare($record['valore']).'
|
|
UNION SELECT id FROM dt_righe_ddt WHERE um='.prepare($record['valore']).'
|
|
UNION SELECT id FROM or_righe_ordini WHERE um='.prepare($record['valore']).'
|
|
UNION SELECT id FROM co_righe_contratti WHERE um='.prepare($record['valore']).'
|
|
UNION SELECT id FROM mg_articoli WHERE um='.prepare($record['valore']).'
|
|
UNION SELECT id FROM co_righe_preventivi WHERE um='.prepare($record['valore']));
|
|
|
|
if (isset($id_record) && empty($righe)) {
|
|
$dbo->query('DELETE FROM `mg_unitamisura` WHERE `id`='.prepare($id_record));
|
|
flash()->info(tr('Tipologia di _TYPE_ eliminata con successo!', [
|
|
'_TYPE_' => 'unità di misura',
|
|
]));
|
|
} else {
|
|
flash()->error(tr('Sono presenti righe collegate a questa unità di misura.'));
|
|
}
|
|
|
|
break;
|
|
}
|