Fix: La liste des produits n'était pas triées.
This commit is contained in:
parent
7477ebb3d4
commit
71eab1b9ce
@ -452,7 +452,7 @@ class Form
|
|||||||
$sql.= " FROM ".MAIN_DB_PREFIX."product as p ";
|
$sql.= " FROM ".MAIN_DB_PREFIX."product as p ";
|
||||||
$sql.= " WHERE p.envente = 1";
|
$sql.= " WHERE p.envente = 1";
|
||||||
if ($filtretype && $filtretype != '') $sql.=" AND p.fk_product_type=".$filtretype;
|
if ($filtretype && $filtretype != '') $sql.=" AND p.fk_product_type=".$filtretype;
|
||||||
$sql.= " ORDER BY p.nbvente DESC";
|
$sql.= " ORDER BY p.ref";
|
||||||
if ($limit) $sql.= " LIMIT $limit";
|
if ($limit) $sql.= " LIMIT $limit";
|
||||||
|
|
||||||
$result=$this->db->query($sql);
|
$result=$this->db->query($sql);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user