dolibarr 21.0.0-beta
row.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2010-2021 Regis Houssin <regis.houssin@inodbox.com>
3 * Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
5 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
32if (!defined('NOTOKENRENEWAL')) {
33 define('NOTOKENRENEWAL', '1'); // Disable token renewal
34}
35if (!defined('NOREQUIREMENU')) {
36 define('NOREQUIREMENU', '1');
37}
38if (!defined('NOREQUIREHTML')) {
39 define('NOREQUIREHTML', '1');
40}
41if (!defined('NOREQUIREAJAX')) {
42 define('NOREQUIREAJAX', '1');
43}
44if (!defined('NOREQUIRESOC')) {
45 define('NOREQUIRESOC', '1');
46}
47if (!defined('NOREQUIRETRAN')) {
48 define('NOREQUIRETRAN', '1');
49}
50
51// Load Dolibarr environment
52require '../../main.inc.php';
53require_once DOL_DOCUMENT_ROOT.'/core/class/genericobject.class.php';
54
63$hookmanager->initHooks(array('rowinterface'));
64
65$roworder = GETPOST('roworder', 'alpha', 3);
66$table_element_line = GETPOST('table_element_line', 'aZ09', 3);
67$fk_element = GETPOST('fk_element', 'aZ09', 3);
68$element_id = GETPOSTINT('element_id', 3);
69$action = 'edit';
70
71
72// Security check
73// This is done later into view.
74
75
76/*
77 * View
78 */
79
81
82dol_syslog("AjaxRow roworder=".$roworder." table_element_line=".$table_element_line." fk_element=".$fk_element." element_id=".$element_id, LOG_DEBUG);
83
84print '<!-- Ajax page called with url '.dol_escape_htmltag($_SERVER["PHP_SELF"]).'?'.dol_escape_htmltag($_SERVER["QUERY_STRING"]).' -->'."\n";
85
86// Registering the location of boxes
87if (GETPOST('roworder', 'alpha', 3) && GETPOST('table_element_line', 'aZ09', 3)
88 && GETPOST('fk_element', 'aZ09', 3) && GETPOSTINT('element_id', 3)) {
89 // Make test on permission
90 $perm = 0;
91 if ($table_element_line == 'propaldet' && $user->hasRight('propal', 'creer')) {
92 $perm = 1;
93 } elseif ($table_element_line == 'commandedet' && $user->hasRight('commande', 'creer')) {
94 $perm = 1;
95 } elseif ($table_element_line == 'facturedet' && $user->hasRight('facture', 'creer')) {
96 $perm = 1;
97 } elseif ($table_element_line == 'facturedet_rec' && $user->hasRight('facture', 'creer')) {
98 $perm = 1;
99 } elseif ($table_element_line == 'emailcollector_emailcollectoraction' && $user->admin) {
100 $perm = 1;
101 } elseif ($table_element_line == 'bom_bomline' && $user->hasRight('bom', 'write')) {
102 $perm = 1;
103 } elseif ($table_element_line == 'mrp_production' && $user->hasRight('mrp', 'write')) {
104 $perm = 1;
105 } elseif ($table_element_line == 'supplier_proposaldet' && $user->hasRight('supplier_proposal', 'creer')) {
106 $perm = 1;
107 } elseif ($table_element_line == 'commande_fournisseurdet' && $user->hasRight('fournisseur', 'commande', 'creer')) {
108 $perm = 1;
109 } elseif ($table_element_line == 'facture_fourn_det' && $user->hasRight('fournisseur', 'facture', 'creer')) {
110 $perm = 1;
111 } elseif ($table_element_line == 'facture_fourn_det_rec' && $user->hasRight('fournisseur', 'facture', 'creer')) {
112 $perm = 1;
113 } elseif ($table_element_line == 'product_attribute_value' && $fk_element == 'fk_product_attribute' && ($user->hasRight('produit', 'lire') || $user->hasRight('service', 'lire'))) {
114 $perm = 1;
115 } elseif ($table_element_line == 'ecm_files') { // Used when of page "documents.php"
116 if ($user->hasRight('ecm', 'creer')) {
117 $perm = 1;
118 } elseif ($fk_element == 'fk_product' && ($user->hasRight('produit', 'creer') || $user->hasRight('service', 'creer'))) {
119 $perm = 1;
120 } elseif ($fk_element == 'fk_ticket' && $user->hasRight('ticket', 'write')) {
121 $perm = 1;
122 } elseif ($fk_element == 'fk_holiday' && $user->hasRight('holiday', 'write')) {
123 $perm = 1;
124 } elseif ($fk_element == 'fk_soc' && $user->hasRight('societe', 'creer')) {
125 $perm = 1;
126 }
127 } elseif ($table_element_line == 'product_association' && $fk_element == 'fk_product' && ($user->hasRight('produit', 'creer') || $user->hasRight('service', 'creer'))) {
128 $perm = 1;
129 } elseif ($table_element_line == 'projet_task' && $fk_element == 'fk_projet' && $user->hasRight('projet', 'creer')) {
130 $perm = 1;
131 } elseif ($table_element_line == 'contratdet' && $fk_element == 'fk_contrat' && $user->hasRight('contrat', 'creer')) {
132 $perm = 1;
133 } elseif ($table_element_line == 'stocktransfer_stocktransferline' && $fk_element == 'fk_stocktransfer' && $user->hasRight('stocktransfer', 'stocktransfer', 'write')) {
134 $perm = 1;
135 } else {
136 $tmparray = explode('_', $table_element_line);
137 $tmpmodule = $tmparray[0];
138 $tmpobject = preg_replace('/line$/', '', $tmparray[1]);
139 if (!empty($tmpmodule) && !empty($tmpobject) && !empty($conf->$tmpmodule->enabled) && $user->hasRight($tmpobject, 'write')) {
140 $perm = 1;
141 }
142 }
143 // Overwrite $perm by hook
144 $parameters = array('roworder' => &$roworder, 'table_element_line' => &$table_element_line, 'fk_element' => &$fk_element, 'element_id' => &$element_id, 'perm' => &$perm);
145 $row = new GenericObject($db);
146 $row->table_element_line = $table_element_line;
147 $row->fk_element = $fk_element;
148 $row->id = $element_id;
149 $reshook = $hookmanager->executeHooks('checkRowPerms', $parameters, $row, $action);
150 if ($reshook > 0) {
151 $perm = $hookmanager->resArray['perm'];
152 }
153
154 if (! $perm) {
155 // We should not be here. If we are not allowed to reorder rows, feature should not be visible on script.
156 // If we are here, it is a hack attempt, so we report a warning.
157 print 'Bad permission to modify position of lines for object in table '.$table_element_line;
158 dol_syslog('Bad permission to modify position of lines for object in table='.$table_element_line.', fk_element='.$fk_element, LOG_WARNING);
159 //accessforbidden('Bad permission to modify position of lines for object in table '.$table_element_line);
160 httponly_accessforbidden('Bad permission to modify position of lines for object in table '.$table_element_line);
161 }
162
163 $rowordertab = explode(',', $roworder);
164 $newrowordertab = array();
165 foreach ($rowordertab as $value) {
166 if (!empty($value)) {
167 $newrowordertab[] = $value;
168 }
169 }
170
171
172
173 $row->line_ajaxorder($newrowordertab); // This update field rank or position in table row->table_element_line
174
175 // Reorder line to have position of children lines sharing same counter than parent lines
176 // This should be useless because there is no need to have children sharing same counter than parent, but well, it's cleaner into database.
177 if (in_array($fk_element, array('fk_facture', 'fk_propal', 'fk_commande','fk_contrat'))) {
178 $result = $row->line_order(true);
179 }
180} else {
181 print 'Bad parameters for row.php';
182}
Class of a generic business object.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
if(!defined( 'NOREQUIREMENU')) if(!empty(GETPOST('seteventmessages', 'alpha'))) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
httponly_accessforbidden($message='1', $http_response_code=403, $stringalreadysanitized=0)
Show a message to say access is forbidden and stop program.