Jump to content

modifier la liste des produits dans le back-office


Recommended Posts

Bonjour,

 

Côté back-office, je souhaiterai modifier l'ordre de tri par défaut des produits dans le menu Catalogue > Produits, et ce sur un prestashop 1.5.

En effet quand on clique sur Réinitialiser (pour enlever les filtres / tris) les premiers produits de la liste sont les premiers créés, j'aimerai voir les derniers.

Donc pour être claire : avoir par défaut un tri des produits par id DESC et non ASC.

Quelqu'un pourrait-il m'indiquer quel fichier contient la requête SQL qui va chercher les produits pour les afficher dans cette liste svp ?

 

Merci d'avance :)

Link to comment
Share on other sites

ligne 326 de AminProductsController.php

	public function getList($id_lang, $orderBy = null, $orderWay = null, $start = 0, $limit = null, $id_lang_shop = null)
	{
		$orderByPriceFinal = (empty($orderBy) ? ($this->context->cookie->__get($this->table.'Orderby') ? $this->context->cookie->__get($this->table.'Orderby') : 'id_'.$this->table) : $orderBy);
		$orderWayPriceFinal = (empty($orderWay) ? ($this->context->cookie->__get($this->table.'Orderway') ? $this->context->cookie->__get($this->table.'Orderby') : 'ASC') : $orderWay);
		if ($orderByPriceFinal == 'price_final')
		{
			$orderBy = 'id_'.$this->table;
			$orderWay = 'ASC';
		}
...

Remplacez 'ASC' par 'DESC'

 

Si ca ne fonctionne pas on mettra un ternaire.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...