Sébastien Plénat Posted September 4, 2009 Share Posted September 4, 2009 BonjourQuand je clique sur l'onglet j'ai ça :Invalid argument supplied for foreach() in /home/var/www/vhosts/ballbust-slapping.com/httpdocs/shop/admin-shop/tabs/AdminOrders.php on line 838Quelq'un peut m'expliquer ?Merci Link to comment Share on other sites More sharing options...
lighton Posted January 17, 2011 Share Posted January 17, 2011 Bonjour,nous avons le meme probleme est nous ne comprenons pas pourquoi.Quelqu un pourrait il nous aiderMerci d avance. Link to comment Share on other sites More sharing options...
juliens Posted January 17, 2011 Share Posted January 17, 2011 Quel est le code de la ligne line 838 de admin-shop/tabs/AdminOrders.php ? Link to comment Share on other sites More sharing options...
lighton Posted January 17, 2011 Share Posted January 17, 2011 bonsoir,il s'agit de: foreach ($this->_list as $item)private function getTotal() { $total = 0; foreach ($this->_list as $item) $total += $item['total_paid']; return $total; } Link to comment Share on other sites More sharing options...
juliens Posted January 17, 2011 Share Posted January 17, 2011 Bizarre, voir ci-dessous le contenu de ma fonction "private function getTotal()"Essaie de remplacer par çà private function getTotal() { global $cookie; $total = 0; foreach($this->_list AS $item) if ($item['id_currency'] == Configuration::get('PS_CURRENCY_DEFAULT')) $total += floatval($item['total_paid']); else { $currency = new Currency(intval($item['id_currency'])); $total += Tools::ps_round(floatval($item['total_paid']) / floatval($currency->conversion_rate), 2); } return $total; } Link to comment Share on other sites More sharing options...
lighton Posted January 18, 2011 Share Posted January 18, 2011 Bonjour,tout d'abord merci de ton aide.Concernant mon soucis j'ai test ton code et cela ne change rien.J ai l impression que c'est la connection avec la base de donnée qui ne marche pas. Car il n y a que l'onglet commande qui m'inscrit cela et non les titres dans l'onglet commande.une idée ? 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