Jump to content

[résolu]prix dans la fiche produit : d'ou vient-il ?


Recommended Posts

Bonjour à tous,

 

Je cherche à comprendre d’où vient la variable {$product.price_tax_exc} (qui est dans le fichier product-list.tpl) car celle ci arrive chez moi à 1 chiffre après la virgule, mais j'en voudrais plus...

 

J'ai pas l'impression qu'elle se trouve dans le fichier class/product.php ni dans class/category.php...

 

D'ou vient-elle ?

 

Dites moi si ma question n'est pas clair !!

 

Merci d'avance pour vos réponse,

 

Edited by sangria777 (see edit history)
Link to comment
Share on other sites

je le vois dans class/product.php

$row['price_tax_exc'] = Product::getPriceStatic(
			(int)$row['id_product'],
			false,
			((isset($row['id_product_attribute']) && !empty($row['id_product_attribute'])) ? (int)$row['id_product_attribute'] : null),
			(self::$_taxCalculationMethod == PS_TAX_EXC ? 2 : 6)
		);

J'imagine qu'il faut que je comprenne getPriceStatic...

public static function getPriceStatic($id_product, 
					$usetax = true, 
					$id_product_attribute = null, 
					$decimals = 6,
					$divisor = null,
					$only_reduc = false, 
					$usereduc = true, 
					$quantity = 1, 
					$force_associated_tax = false, 
					$id_customer = null, $id_cart = null,
					$id_address = null, 
					&$specific_price_output = null, 
					$with_ecotax = true, 
					$use_group_reduction = true, 
					Context $context = null,
					$use_customer_price = true
					)

Je vois $decimals = 6

 

ça veux dire que par défaut c'est égale à 6 ou je dois le remettre quelque part ?

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