Jump to content

bug dans getPriceWithoutReduct


Recommended Posts

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

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