dolibarr 18.0.6
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 *
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
30if (!defined('NOTOKENRENEWAL')) {
31 define('NOTOKENRENEWAL', '1'); // Disable token renewal
32}
33if (!defined('NOREQUIREMENU')) {
34 define('NOREQUIREMENU', '1');
35}
36if (!defined('NOREQUIREHTML')) {
37 define('NOREQUIREHTML', '1');
38}
39if (!defined('NOREQUIREAJAX')) {
40 define('NOREQUIREAJAX', '1');
41}
42if (!defined('NOREQUIRESOC')) {
43 define('NOREQUIRESOC', '1');
44}
45if (!defined('NOREQUIRETRAN')) {
46 define('NOREQUIRETRAN', '1');
47}
48
49// Load Dolibarr environment
50require '../../main.inc.php';
51require_once DOL_DOCUMENT_ROOT.'/core/class/genericobject.class.php';
52
53$hookmanager->initHooks(array('rowinterface'));
54
55// Security check
56// This is done later into view.
57
58
59/*
60 * View
61 */
62
64
65print '<!-- Ajax page called with url '.dol_escape_htmltag($_SERVER["PHP_SELF"]).'?'.dol_escape_htmltag($_SERVER["QUERY_STRING"]).' -->'."\n";
66
67// Registering the location of boxes
68if (GETPOST('roworder', 'alpha', 3) && GETPOST('table_element_line', 'aZ09', 3)
69 && GETPOST('fk_element', 'aZ09', 3) && GETPOST('element_id', 'int', 3)) {
70 $roworder = GETPOST('roworder', 'alpha', 3);
71 $table_element_line = GETPOST('table_element_line', 'aZ09', 3);
72 $fk_element = GETPOST('fk_element', 'aZ09', 3);
73 $element_id = GETPOST('element_id', 'int', 3);
74
75 dol_syslog("AjaxRow roworder=".$roworder." table_element_line=".$table_element_line." fk_element=".$fk_element." element_id=".$element_id, LOG_DEBUG);
76
77 // Make test on permission
78 $perm = 0;
79 if ($table_element_line == 'propaldet' && $user->hasRight('propal', 'creer')) {
80 $perm = 1;
81 } elseif ($table_element_line == 'commandedet' && $user->hasRight('commande', 'creer')) {
82 $perm = 1;
83 } elseif ($table_element_line == 'facturedet' && $user->hasRight('facture', 'creer')) {
84 $perm = 1;
85 } elseif ($table_element_line == 'facturedet_rec' && $user->hasRight('facture', 'creer')) {
86 $perm = 1;
87 } elseif ($table_element_line == 'emailcollector_emailcollectoraction' && $user->admin) {
88 $perm = 1;
89 } elseif ($table_element_line == 'bom_bomline' && $user->rights->bom->write) {
90 $perm = 1;
91 } elseif ($table_element_line == 'mrp_production' && $user->rights->mrp->write) {
92 $perm = 1;
93 } elseif ($table_element_line == 'supplier_proposaldet' && $user->rights->supplier_proposal->creer) {
94 $perm = 1;
95 } elseif ($table_element_line == 'commande_fournisseurdet' && $user->rights->fournisseur->commande->creer) {
96 $perm = 1;
97 } elseif ($table_element_line == 'facture_fourn_det' && $user->rights->fournisseur->facture->creer) {
98 $perm = 1;
99 } elseif ($table_element_line == 'facture_fourn_det_rec' && $user->rights->fournisseur->facture->creer) {
100 $perm = 1;
101 } elseif ($table_element_line == 'product_attribute_value' && $fk_element == 'fk_product_attribute' && ($user->hasRight('produit', 'lire') || $user->hasRight('service', 'lire'))) {
102 $perm = 1;
103 } elseif ($table_element_line == 'ecm_files') { // Used when of page "documents.php"
104 if (!empty($user->rights->ecm->creer)) {
105 $perm = 1;
106 } elseif ($fk_element == 'fk_product' && ($user->hasRight('produit', 'creer') || !empty($user->rights->service->creer))) {
107 $perm = 1;
108 } elseif ($fk_element == 'fk_ticket' && !empty($user->rights->ticket->write)) {
109 $perm = 1;
110 } elseif ($fk_element == 'fk_holiday' && !empty($user->rights->holiday->write)) {
111 $perm = 1;
112 } elseif ($fk_element == 'fk_soc' && !empty($user->rights->societe->creer)) {
113 $perm = 1;
114 }
115 } elseif ($table_element_line == 'product_association' && $fk_element == 'fk_product' && ($user->hasRight('produit', 'creer') || !empty($user->rights->service->creer))) {
116 $perm = 1;
117 } elseif ($table_element_line == 'projet_task' && $fk_element == 'fk_projet' && $user->rights->projet->creer) {
118 $perm = 1;
119 } elseif ($table_element_line == 'contratdet' && $fk_element == 'fk_contrat' && $user->hasRight('contrat', 'creer')) {
120 $perm = 1;
121 } else {
122 $tmparray = explode('_', $table_element_line);
123 $tmpmodule = $tmparray[0]; $tmpobject = preg_replace('/line$/', '', $tmparray[1]);
124 if (!empty($tmpmodule) && !empty($tmpobject) && !empty($conf->$tmpmodule->enabled) && !empty($user->rights->$tmpobject->write)) {
125 $perm = 1;
126 }
127 }
128 $parameters = array('roworder'=> &$roworder, 'table_element_line' => &$table_element_line, 'fk_element' => &$fk_element, 'element_id' => &$element_id, 'perm' => &$perm);
129 $row = new GenericObject($db);
130 $row->table_element_line = $table_element_line;
131 $row->fk_element = $fk_element;
132 $row->id = $element_id;
133 $reshook = $hookmanager->executeHooks('checkRowPerms', $parameters, $row, $action);
134 if ($reshook > 0) {
135 $perm = $hookmanager->resArray['perm'];
136 }
137 if (! $perm) {
138 // We should not be here. If we are not allowed to reorder rows, feature should not be visible on script.
139 // If we are here, it is a hack attempt, so we report a warning.
140 print 'Bad permission to modify position of lines for object in table '.$table_element_line;
141 dol_syslog('Bad permission to modify position of lines for object in table='.$table_element_line.', fk_element='.$fk_element, LOG_WARNING);
142 accessforbidden('Bad permission to modify position of lines for object in table '.$table_element_line);
143 }
144
145 $rowordertab = explode(',', $roworder);
146 $newrowordertab = array();
147 foreach ($rowordertab as $value) {
148 if (!empty($value)) {
149 $newrowordertab[] = $value;
150 }
151 }
152
153
154
155 $row->line_ajaxorder($newrowordertab); // This update field rank or position in table row->table_element_line
156
157 // Reorder line to have position of children lines sharing same counter than parent lines
158 // This should be useless because there is no need to have children sharing same counter than parent, but well, it's cleaner into database.
159 if (in_array($fk_element, array('fk_facture', 'fk_propal', 'fk_commande','fk_contrat'))) {
160 $result = $row->line_order(true);
161 }
162} else {
163 print 'Bad parameters for row.php';
164}
Class of a generic business object.
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.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.