Parcourir la source

[Frontend] Page produit : affichage prix par unité de référence

master
Guillaume il y a 4 ans
Parent
révision
14f688720a
1 fichiers modifiés avec 9 ajouts et 0 suppressions
  1. +9
    -0
      ShopBundle/Services/PriceUtils.php

+ 9
- 0
ShopBundle/Services/PriceUtils.php Voir le fichier

@@ -50,6 +50,15 @@ class PriceUtils
);
}

/*public function getPriceUnitWithTaxAndReduction($entity)
{
if($entity instanceof ProductInterface) {
return $this->getPriceWithTaxAndReduction($entity) / $entity->getQuantity() ;
}

return null ;
}*/

public function getPriceByRefUnit($entity)
{
if($entity instanceof ProductPropertyInterface) {

Chargement…
Annuler
Enregistrer