Merge branch 'fixes/fix-order-product-by-id' into staging

This commit is contained in:
Tiavina 2025-01-08 12:23:28 +03:00
commit 259df617fe

View File

@ -428,7 +428,8 @@ class Bdd {
}
public function getProduits($idNextcloud){
$sql = "SELECT * FROM ".$this->tableprefix."produit;";
$sql = "SELECT *
FROM ".$this->tableprefix."produit ORDER BY id DESC;";
return $this->execSQL($sql, array());
}