row.php 6.7 KB

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