dolibarr 22.0.5
updateextrafield.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2022 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2024-2025 Frédéric France <frederic.france@free.fr>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
25if (!defined('NOTOKENRENEWAL')) {
26 define('NOTOKENRENEWAL', 1); // Disables token renewal
27}
28if (!defined('NOREQUIREMENU')) {
29 define('NOREQUIREMENU', '1');
30}
31if (!defined('NOREQUIREHTML')) {
32 define('NOREQUIREHTML', '1');
33}
34if (!defined('NOREQUIREAJAX')) {
35 define('NOREQUIREAJAX', '1');
36}
37if (!defined('NOREQUIRESOC')) {
38 define('NOREQUIRESOC', '1');
39}
40if (!defined('NOCSRFCHECK')) {
41 define('NOCSRFCHECK', '1');
42}
43if (!defined('NOREQUIREHTML')) {
44 define('NOREQUIREHTML', '1');
45}
46
47// Load Dolibarr environment
48include '../../main.inc.php';
49
59$objectType = GETPOST('objectType', 'aZ09');
60$objectId = GETPOST('objectId', 'aZ09');
61$field = GETPOST('field', 'aZ09');
62$value = GETPOST('value', 'alpha');
63
64$module = getElementProperties($objectType)['module'];
65$element_ref = '';
66if (is_numeric($objectId)) {
67 $objectId = (int) $objectId;
68} else {
69 $element_ref = $objectId;
70 $objectId = 0;
71}
72$object = fetchObjectByElement($objectId, $objectType, $element_ref);
73
74// Security check
75if (!$user->hasRight($module, $object->element, 'write') && !$user->hasRight($module, 'write')) {
77}
78
79/*
80 * View
81 */
82
83dol_syslog("Call ajax core/ajax/updateextrafield.php");
84
86
87// Update the object field with the new value
88if ($object->id > 0 && $field && isset($value)) {
89 // Fetch optionals attributes and labels
90 $extrafields->fetch_name_optionals_label($object->table_element);
91
92 // TODO Test specific permission of extrafield $field for object $object. It is stored into
93 // $extrafields->attributes[$object->table_element]['label']['perms'][$key]
94
95 $object->array_options['options_'.$field] = $value;
96 if ($object instanceof Societe) {
97 $result = $object->update($object->id, $user);
98 } else {
99 $result = $object->update($user);
100 }
101
102 if ($result < 0) {
103 print json_encode(['status' => 'error', 'message' => 'Error updating '. $field]);
104 } else {
105 print json_encode(['status' => 'success', 'message' => $field . ' updated successfully']);
106 }
107}
108
109$db->close();
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:67
Class to manage third parties objects (customers, suppliers, prospects...)
getElementProperties($elementType)
Get an array with properties of an element.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
fetchObjectByElement($element_id, $element_type, $element_ref='', $useCache=0, $maxCacheByType=10)
Fetch an object from its id and element_type Inclusion of classes is automatic.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
if(!defined( 'NOREQUIREMENU')) if(!empty(GETPOST('seteventmessages', 'alpha'))) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.