Current File : /home/karenpetzb/application/modules/default/views/scripts/produits/ajaxshowpromopricecaddy.phtml
<?php header('Content-type: text/html; charset=iso-8859-1');

if ($this->currentData) {
	$currentData = $this->currentData;
	if (!$currentData->isSurDevis()) {
		 if ($currentData->isPromo()) { ?>
				<div class="productDetail_priceBox" <?php if ($currentData->getPrixAfterRemise() > 999) { echo 'style="width:165px;"'; } ?>>   
		 		<div class="productDetail_promoImag hidden-print" >
					<img class="tooltips" data-placement="bottom" src="<?php echo $this->baseUrl; ?>/business/image/promo.png" alt="Ce produit est en promotion" title="Ce produit est en promotion" >
				</div>
		 		<div class="productDetail_price" >
			 		 <div class="text12" >
					 	<?php echo number_format($currentData->getPrixAfterRemise(), 2, ',', ' ').' ';?>
					 	<span style="color: #000000">&#8364;</span> 
					 </div>
					 <div>
					 	<span class='oldPromoPrice'> <?php echo number_format($currentData->item_prix, 2, ',', ' ').' ';?>&#8364;</span>
					 </div>
		 		</div> 
			</div>
			
		<?php } else { ?>
				<div class="text12" >
					<?php echo number_format($currentData->item_prix, 2, ',', ' ').' ';?>
					<span style="color: #000000">&#8364;</span>
				</div> 
		<?php } 
	} else { ?>
			<div  class="text12">
				<span>sur devis</span>
			</div> 
	<?php }} ?>