Ajout flches d'ordonnancement des produits sur les commandes et les propales

This commit is contained in:
Regis Houssin 2006-05-27 11:01:04 +00:00
parent 298b1e5505
commit 8df6eee510

View File

@ -302,13 +302,13 @@ if ($_GET['action'] == 'modif' && $user->rights->commande->creer)
if ($_GET['action'] == 'up' && $user->rights->commande->creer)
{
$commande = new Commande($db);
$commande = new Commande($db,'',$_GET['id']);
$commande->line_up($_GET['rowid']);
}
if ($_GET['action'] == 'down' && $user->rights->commande->creer)
{
$commande = new Commande($db);
$commande = new Commande($db,'',$_GET['id']);
$commande->line_down($_GET['rowid']);
}