Jump to content

Trier les articles par quantité


Farinet

Recommended Posts

J'avais besoin de trier les articles par quantité , j'ai donc ajouté la ligne suivante ( ligne 54 du fichier
Admin->Tabs->AdminPPreferences.php

'PS_PRODUCTS_ORDER_BY' => array('title' => $this->l('Default order by:'), 'desc' => $this->l('Default order by for product list'), 'type' => 'select', 'list' => 
        array(
           array('id' => '0', 'name' => $this->l('Product name')),
           array('id' => '1', 'name' => $this->l('Product price')),
           array('id' => '2', 'name' => $this->l('Product added date')),
           array('id' => '4', 'name' => $this->l('Position inside category')),
           array('id' => '5', 'name' => $this->l('Manufacturer')),
           array('id' => '6', 'name' => $this->l('Quantite')),//ajout tri par quantite
           array('id' => '3', 'name' => $this->l('Product modified date'))
          ), 'identifier' => 'id'),


et la on peut choisir ds l'admin le tri par quantité.
si jamais sa peut servir a quelqu'un!

----------
Richard
prestashop 1.2.3 final

Link to comment
Share on other sites

Merci pour cette contribution, Farinet, mais il ne faut pas perdre non plus le coté multilingues, ainsi, je te suggère d'utiliser plutôt :


'PS_PRODUCTS_ORDER_BY' => array('title' => $this->l('Default order by:'), 'desc' => $this->l('Default order by for product list'), 'type' => 'select', 'list' => 
        array(
           array('id' => '0', 'name' => $this->l('Product name')),
           array('id' => '1', 'name' => $this->l('Product price')),
           array('id' => '2', 'name' => $this->l('Product added date')),
           array('id' => '4', 'name' => $this->l('Position inside category')),
           array('id' => '5', 'name' => $this->l('Manufacturer')),
           array('id' => '6', 'name' => $this->l('Quantity')),//ajout tri par quantite
           array('id' => '3', 'name' => $this->l('Product modified date'))
          ), 'identifier' => 'id'), 



Et de traduire Quantity en Quantité dans l'outil de traduction, coté Admin ;)

Link to comment
Share on other sites

  • 1 year later...

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...