openstamanager/modules/gestione_task/actions.php

41 lines
1.4 KiB
PHP
Raw Normal View History

2023-10-27 10:23:52 +02:00
<?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';
2024-03-12 11:32:08 +01:00
use Tasks\Task;
2023-10-27 10:23:52 +02:00
switch (post('op')) {
case 'update':
2024-03-12 11:32:08 +01:00
$name = post('name');
2024-04-18 17:44:05 +02:00
$task_new = (new Task())->getByField('title', $name);
2024-03-12 11:32:08 +01:00
2024-03-22 15:52:24 +01:00
if (!empty($task_new) && $task_new != $id_record) {
2024-03-12 11:32:08 +01:00
flash()->error(tr('Questo nome è già stato utilizzato per un altro task.'));
} else {
2024-04-18 17:44:05 +02:00
$task->setTranslation('title', $name);
2024-03-12 11:32:08 +01:00
$task->class = post('class');
$task->expression = post('expression');
$task->save();
}
2023-10-27 10:23:52 +02:00
flash()->info(tr('Informazioni salvate correttamente.'));
break;
2024-01-15 15:30:45 +01:00
}