caviar Posted December 28, 2010 Share Posted December 28, 2010 j’ai trouvé un bug dans getPriceWithoutReduct (presta 1.3.1)Lorsque je veux afficher le prix sans réduction en HT la fonction renvoie le prix sans réduction mais TTC en la modifiant comme ci-dessous ça fonctionne mais je ne sais pas si cela peut avoir une influence ailleurs dans le programme étant donné que je ne comprends pas vraiment la ligne if (!Tax::excludeTaxeOption())Fichier classes/product.phpcode original en commentaire public function getPriceWithoutReduct($notax = false) { $res = Db::getInstance()->getRow(' SELECT p.`price`, t.`rate`, t.`id_tax` FROM `'._DB_PREFIX_.$this->table.'` p LEFT JOIN `'._DB_PREFIX_.'tax`t ON (p.`id_tax` = t.`id_tax`) WHERE p.`id_product` = '.intval($this->id)); if (!$res) return false; $tax = floatval(Tax::getApplicableTax(intval($res['id_tax']), floatval($res['rate']))); /* if (!Tax::excludeTaxeOption()) return (Tools::convertPrice($res['price']) * (1 + $tax / 100)); return (Tools::convertPrice($res['price'])); */ if ($notax == false) { return (Tools::convertPrice($res['price']) * (1 + $tax / 100)); } else { return (Tools::convertPrice($res['price'])); } } qu'en pensez vous ?++ Link to comment Share on other sites More sharing options...
caviar Posted December 28, 2010 Author Share Posted December 28, 2010 yep...solution trouvée icihttp://www.prestashop.com/forums/viewthread/36077/P30/modules_tiers/pbm__productgetpricewithoutreductnotax/et en regardant la dernière version de PS...j'espère que modifier cette class sur une version 1.3.1 ne posera pas de pb ... car j'ai fait ç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