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