Jump to content

[Prestashop 1.4.2.5 : Total des commandes dans le baco]


Recommended Posts

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

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

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