En visitant ce site, vous acceptez l'utilisation de cookies afin de vous proposer les meilleurs services possibles.
<?php
/*****************************************/
/* DAYCOUNTS : Show Member price : BEGIN */
$loadForShopperGroupId = 8; //This is the id of the shopper group prices to display
$productModel = VmModel::getModel('product');
$shoppergroupsprices = $productModel->loadProductPrices($this->product->virtuemart_product_id,$quantity,array($loadForShopperGroupId),true);
foreach ($shoppergroupsprices as $sgPrice) {
if ($sgPrice['virtuemart_shoppergroup_id'] == $loadForShopperGroupId) {
$clubprice = $sgPrice['product_price'] * (20/100) + $sgPrice['product_price'];
echo '<hr><div class="PricesalesPrice vm-display vm-price-value"><span class="vm-price-desc">Prix club :</span>'. '<span class="PricesalesPrice">'. $this->currency->priceDisplay($clubprice,0,1,false,2,'prix club' ).'</span></div>';
}
}
/* DAYCOUNTS : Show Member price : END */
/***************************************/
?>
Connexion ou Créer un compte pour participer à la conversation.
Connexion ou Créer un compte pour participer à la conversation.
<?php
/*****************************************/
/* DAYCOUNTS : Show Member price : BEGIN */
$loadForShopperGroupId = 8; //This is the id of the shopper group prices to display
$productModel = VmModel::getModel('product');
$shoppergroupsprices = $productModel->loadProductPrices($this->product->virtuemart_product_id,$quantity,array($loadForShopperGroupId),true);
foreach ($shoppergroupsprices as $sgPrice) {
if ($sgPrice['virtuemart_shoppergroup_id'] == $loadForShopperGroupId) {
$mataxe = (20/100);
//$mataxe = 'en attente de la formule magique';
$clubprice = $sgPrice['product_price'] * $mataxe + $sgPrice['product_price'];
echo '<hr><div class="PricesalesPrice vm-display vm-price-value"><span class="vm-price-desc">Prix club :</span>'. '<span class="PricesalesPrice">'. $this->currency->priceDisplay($clubprice,0,1,false,2,'prix club' ).'</span></div>';
}
}
/* DAYCOUNTS : Show Member price : END */
/***************************************/
?>
Connexion ou Créer un compte pour participer à la conversation.
Connexion ou Créer un compte pour participer à la conversation.