Skip to content
Snippets Groups Projects
Commit 49985168 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Code comment

parent 74293cd7
Branches
Tags
No related merge requests found
...@@ -17,7 +17,8 @@ ...@@ -17,7 +17,8 @@
/** /**
* \file htdocs/core/ajax/row.php * \file htdocs/core/ajax/row.php
* \brief File to return Ajax response on Row move * \brief File to return Ajax response on Row move.
* This ajax page is called when doing an up or down drag and drop.
*/ */
if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); // Disables token renewal if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); // Disables token renewal
...@@ -63,7 +64,7 @@ if ((isset($_POST['roworder']) && ! empty($_POST['roworder'])) && (isset($_POST[ ...@@ -63,7 +64,7 @@ if ((isset($_POST['roworder']) && ! empty($_POST['roworder'])) && (isset($_POST[
$row->line_ajaxorder($newrowordertab); $row->line_ajaxorder($newrowordertab);
// Reorder line to have position of chilren lines sharing same counter than parent lines // Reorder line to have position of chilren lines sharing same counter than parent lines
// This should be useless because there is no need to have children sharing same counter that parent. // This should be useless because there is no need to have children sharing same counter than parent, but well, it's cleaner into database.
if (in_array($fk_element,array('fk_facture','fk_propal','fk_commande'))) if (in_array($fk_element,array('fk_facture','fk_propal','fk_commande')))
{ {
$result=$row->line_order(true); $result=$row->line_order(true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment