mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 17:48:25 +01:00
* Fix ai feature to edit/set extrafield with ai following step 3 * fix formlayoutai page * fix CI
110 lines
3.1 KiB
PHP
110 lines
3.1 KiB
PHP
<?php
|
|
/* Copyright (C) 2022 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2024-2025 Frédéric France <frederic.france@free.fr>
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/core/ajax/updateextrafield.php
|
|
* \ingroup core
|
|
* \brief File to update an extrafield (for example for stars or AI update)
|
|
*/
|
|
|
|
if (!defined('NOTOKENRENEWAL')) {
|
|
define('NOTOKENRENEWAL', 1); // Disables token renewal
|
|
}
|
|
if (!defined('NOREQUIREMENU')) {
|
|
define('NOREQUIREMENU', '1');
|
|
}
|
|
if (!defined('NOREQUIREHTML')) {
|
|
define('NOREQUIREHTML', '1');
|
|
}
|
|
if (!defined('NOREQUIREAJAX')) {
|
|
define('NOREQUIREAJAX', '1');
|
|
}
|
|
if (!defined('NOREQUIRESOC')) {
|
|
define('NOREQUIRESOC', '1');
|
|
}
|
|
if (!defined('NOCSRFCHECK')) {
|
|
define('NOCSRFCHECK', '1');
|
|
}
|
|
if (!defined('NOREQUIREHTML')) {
|
|
define('NOREQUIREHTML', '1');
|
|
}
|
|
|
|
// Load Dolibarr environment
|
|
include '../../main.inc.php';
|
|
|
|
/**
|
|
* @var Conf $conf
|
|
* @var DoliDB $db
|
|
* @var ExtraFields $extrafields
|
|
* @var HookManager $hookmanager
|
|
* @var Translate $langs
|
|
* @var User $user
|
|
*/
|
|
|
|
$objectType = GETPOST('objectType', 'aZ09');
|
|
$objectId = GETPOST('objectId', 'aZ09');
|
|
$field = GETPOST('field', 'aZ09');
|
|
$value = GETPOST('value', 'alpha');
|
|
|
|
$module = getElementProperties($objectType)['module'];
|
|
$element_ref = '';
|
|
if (is_numeric($objectId)) {
|
|
$objectId = (int) $objectId;
|
|
} else {
|
|
$element_ref = $objectId;
|
|
$objectId = 0;
|
|
}
|
|
$object = fetchObjectByElement($objectId, $objectType, $element_ref);
|
|
|
|
// Security check
|
|
if (!$user->hasRight($module, $object->element, 'write') && !$user->hasRight($module, 'write')) {
|
|
accessforbidden();
|
|
}
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
dol_syslog("Call ajax core/ajax/updateextrafield.php");
|
|
|
|
top_httphead();
|
|
|
|
// Update the object field with the new value
|
|
if ($object->id > 0 && $field && isset($value)) {
|
|
// Fetch optionals attributes and labels
|
|
$extrafields->fetch_name_optionals_label($object->table_element);
|
|
|
|
// TODO Test specific permission of extrafield $field for object $object. It is stored into
|
|
// $extrafields->attributes[$object->table_element]['label']['perms'][$key]
|
|
|
|
$object->array_options['options_'.$field] = $value;
|
|
if ($object instanceof Societe) {
|
|
$result = $object->update($object->id, $user);
|
|
} else {
|
|
$result = $object->update($user);
|
|
}
|
|
|
|
if ($result < 0) {
|
|
print json_encode(['status' => 'error', 'message' => 'Error updating '. $field]);
|
|
} else {
|
|
print json_encode(['status' => 'success', 'message' => $field . ' updated successfully']);
|
|
}
|
|
}
|
|
|
|
$db->close();
|