WebDesign-Entreprise Posted February 26, 2018 Share Posted February 26, 2018 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 More sharing options...
WebDesign-Entreprise Posted February 27, 2018 Author Share Posted February 27, 2018 Héooo? Héooo? Héooo? Héooo? Y'a quelqu'un? Y'a quelqu'un? Y'a quelqu'un? Y'a quelqu'un? Link to comment Share on other sites More sharing options...
WebDesign-Entreprise Posted August 9, 2018 Author Share Posted August 9, 2018 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now