dolibarr 20.0.0
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 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
31if (!defined('NOTOKENRENEWAL')) {
32 define('NOTOKENRENEWAL', '1'); // Disable token renewal
33}
34if (!defined('NOREQUIREMENU')) {
35 define('NOREQUIREMENU', '1');
36}
37if (!defined('NOREQUIREHTML')) {
38 define('NOREQUIREHTML', '1');
39}
40if (!defined('NOREQUIREAJAX')) {
41 define('NOREQUIREAJAX', '1');
42}
43if (!defined('NOREQUIRESOC')) {
44 define('NOREQUIRESOC', '1');
45}
46if (!defined('NOREQUIRETRAN')) {
47 define('NOREQUIRETRAN', '1');
48}
49
50// Load Dolibarr environment
51require '../../main.inc.php';
52require_once DOL_DOCUMENT_ROOT.'/core/class/genericobject.class.php';
53
54$hookmanager->initHooks(array('rowinterface'));
55
56$roworder = GETPOST('roworder', 'alpha', 3);
57$table_element_line = GETPOST('table_element_line', 'aZ09', 3);
58$fk_element = GETPOST('fk_element', 'aZ09', 3);
59$element_id = GETPOSTINT('element_id', 3);
60$action = 'edit';
61
62
63// Security check
64// This is done later into view.
65
66
67/*
68 * View
69 */
70
72
73dol_syslog("AjaxRow roworder=".$roworder." table_element_line=".$table_element_line." fk_element=".$fk_element." element_id=".$element_id, LOG_DEBUG);
74
75print '<!-- Ajax page called with url '.dol_escape_htmltag($_SERVER["PHP_SELF"]).'?'.dol_escape_htmltag($_SERVER["QUERY_STRING"]).' -->'."\n";
76
77// Registering the location of boxes
78if (GETPOST('roworder', 'alpha', 3) && GETPOST('table_element_line', 'aZ09', 3)
79 && GETPOST('fk_element', 'aZ09', 3) && GETPOSTINT('element_id', 3)) {
80 // Make test on permission
81 $perm = 0;
82 if ($table_element_line == 'propaldet' && $user->hasRight('propal', 'creer')) {
83 $perm = 1;
84 } elseif ($table_element_line == 'commandedet' && $user->hasRight('commande', 'creer')) {
85 $perm = 1;
86 } elseif ($table_element_line == 'facturedet' && $user->hasRight('facture', 'creer')) {
87 $perm = 1;
88 } elseif ($table_element_line == 'facturedet_rec' && $user->hasRight('facture', 'creer')) {
89 $perm = 1;
90 } elseif ($table_element_line == 'emailcollector_emailcollectoraction' && $user->admin) {
91 $perm = 1;
92 } elseif ($table_element_line == 'bom_bomline' && $user->hasRight('bom', 'write')) {
93 $perm = 1;
94 } elseif ($table_element_line == 'mrp_production' && $user->hasRight('mrp', 'write')) {
95 $perm = 1;
96 } elseif ($table_element_line == 'supplier_proposaldet' && $user->hasRight('supplier_proposal', 'creer')) {
97 $perm = 1;
98 } elseif ($table_element_line == 'commande_fournisseurdet' && $user->hasRight('fournisseur', 'commande', 'creer')) {
99 $perm = 1;
100 } elseif ($table_element_line == 'facture_fourn_det' && $user->hasRight('fournisseur', 'facture', 'creer')) {
101 $perm = 1;
102 } elseif ($table_element_line == 'facture_fourn_det_rec' && $user->hasRight('fournisseur', 'facture', 'creer')) {
103 $perm = 1;
104 } elseif ($table_element_line == 'product_attribute_value' && $fk_element == 'fk_product_attribute' && ($user->hasRight('produit', 'lire') || $user->hasRight('service', 'lire'))) {
105 $perm = 1;
106 } elseif ($table_element_line == 'ecm_files') { // Used when of page "documents.php"
107 if ($user->hasRight('ecm', 'creer')) {
108 $perm = 1;
109 } elseif ($fk_element == 'fk_product' && ($user->hasRight('produit', 'creer') || $user->hasRight('service', 'creer'))) {
110 $perm = 1;
111 } elseif ($fk_element == 'fk_ticket' && $user->hasRight('ticket', 'write')) {
112 $perm = 1;
113 } elseif ($fk_element == 'fk_holiday' && $user->hasRight('holiday', 'write')) {
114 $perm = 1;
115 } elseif ($fk_element == 'fk_soc' && $user->hasRight('societe', 'creer')) {
116 $perm = 1;
117 }
118 } elseif ($table_element_line == 'product_association' && $fk_element == 'fk_product' && ($user->hasRight('produit', 'creer') || $user->hasRight('service', 'creer'))) {
119 $perm = 1;
120 } elseif ($table_element_line == 'projet_task' && $fk_element == 'fk_projet' && $user->hasRight('projet', 'creer')) {
121 $perm = 1;
122 } elseif ($table_element_line == 'contratdet' && $fk_element == 'fk_contrat' && $user->hasRight('contrat', 'creer')) {
123 $perm = 1;
124 } elseif ($table_element_line == 'stocktransfer_stocktransferline' && $fk_element == 'fk_stocktransfer' && $user->hasRight('stocktransfer', 'stocktransfer', 'write')) {
125 $perm = 1;
126 } else {
127 $tmparray = explode('_', $table_element_line);
128 $tmpmodule = $tmparray[0];
129 $tmpobject = preg_replace('/line$/', '', $tmparray[1]);
130 if (!empty($tmpmodule) && !empty($tmpobject) && !empty($conf->$tmpmodule->enabled) && $user->hasRight($tmpobject, 'write')) {
131 $perm = 1;
132 }
133 }
134 // Overwrite $perm by hook
135 $parameters = array('roworder' => &$roworder, 'table_element_line' => &$table_element_line, 'fk_element' => &$fk_element, 'element_id' => &$element_id, 'perm' => &$perm);
136 $row = new GenericObject($db);
137 $row->table_element_line = $table_element_line;
138 $row->fk_element = $fk_element;
139 $row->id = $element_id;
140 $reshook = $hookmanager->executeHooks('checkRowPerms', $parameters, $row, $action);
141 if ($reshook > 0) {
142 $perm = $hookmanager->resArray['perm'];
143 }
144
145 if (! $perm) {
146 // We should not be here. If we are not allowed to reorder rows, feature should not be visible on script.
147 // If we are here, it is a hack attempt, so we report a warning.
148 print 'Bad permission to modify position of lines for object in table '.$table_element_line;
149 dol_syslog('Bad permission to modify position of lines for object in table='.$table_element_line.', fk_element='.$fk_element, LOG_WARNING);
150 //accessforbidden('Bad permission to modify position of lines for object in table '.$table_element_line);
151 httponly_accessforbidden('Bad permission to modify position of lines for object in table '.$table_element_line);
152 }
153
154 $rowordertab = explode(',', $roworder);
155 $newrowordertab = array();
156 foreach ($rowordertab as $value) {
157 if (!empty($value)) {
158 $newrowordertab[] = $value;
159 }
160 }
161
162
163
164 $row->line_ajaxorder($newrowordertab); // This update field rank or position in table row->table_element_line
165
166 // Reorder line to have position of children lines sharing same counter than parent lines
167 // This should be useless because there is no need to have children sharing same counter than parent, but well, it's cleaner into database.
168 if (in_array($fk_element, array('fk_facture', 'fk_propal', 'fk_commande','fk_contrat'))) {
169 $result = $row->line_order(true);
170 }
171} else {
172 print 'Bad parameters for row.php';
173}
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.
httponly_accessforbidden($message='1', $http_response_code=403, $stringalreadysanitized=0)
Show a message to say access is forbidden and stop program.