mbarreteau Posted June 9, 2011 Share Posted June 9, 2011 Bonjour,Voici une petite manipulation permettant (j'espère que la condition que j'ai ajouté suffit mais ça à l'air de fonctionner ?) d'avoir un total de commande dans le baco un peu plus intéressant (seules les commandes payées sont comptabilisées) :Fichier admin/tabs/AdminOrders.php (méthode getTotal) :Original : ... foreach($this->_list AS $item) if ($item['id_currency'] == Configuration::get('PS_CURRENCY_DEFAULT')) ... Modifié : ... foreach($this->_list AS $item) if($item['valid']==1) if ($item['id_currency'] == Configuration::get('PS_CURRENCY_DEFAULT')) ... Matthieu Link to comment Share on other sites More sharing options...
leeloo Posted June 11, 2011 Share Posted June 11, 2011 Bonjour, Dans le même genre, on peut afficher le total des commandes payées, total des commandes passées et total des commandes en attente de paiement. Il faut alors créer des nouvelles fonctions et en changeant la condition (0 ou 1).Merci pour l'astuce. 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