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