Jump to content

Tri des produits dans les commandes PS16


Recommended Posts

Bonjour,

Je dois réaliser le tri des produits lors de l'affichage du détail d'une commande en fonction de la catégorie par défaut afin de faciliter la gestion des commandes.

Impossible d'arriver à quelque chose qui fonctionne.

Pour l'instant j'ai fais un override du controller AdminOrdersController, j'ai rajouté à la fin de la fonction getProducts($order)

usort($products, "my_cmp")

avec comme fonction de comparaison:

 function my_cmp($a, $b) {
  		if ($a->id_category_default == $b->id_category_default) {
    	return 0;
  		}
  	return ($a->id_category_default < $b->id_category_default) ? -1 : 1;
	}

usort me retourne toujours un FALSE.

Quelqu'un aurait-il une idée de comment faire cela?

Merci

Link to comment
Share on other sites

  • 5 months later...

Hello,


Un grand merci pour votre aide :) J'ai finalement trouvé comme un grand:

Fichier: AdminOrdersController.php

Ligne 1727 ajouter: 

usort($products, function($a, $b) {return $a['id_category_default'] <=> $b['id_category_default'];});

Ca donne ça:

 foreach ($history as &$order_state) {
            $order_state['text-color'] = Tools::getBrightness($order_state['color']) < 128 ? 'white' : 'black';
        }
		usort($products, function($a, $b) {return $a['id_category_default'] <=> $b['id_category_default'];});
        // Smarty assign
        $this->tpl_view_vars = array(
            'order' => $order,
            'cart' => new Cart($order->id_cart),
            'customer' => $customer,

A+

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