Przeglądaj źródła

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

master
Guillaume 4 lat temu
rodzic
commit
bbbb8c6659
1 zmienionych plików z 7 dodań i 2 usunięć
  1. +7
    -2
      ShopBundle/Model/PriceTrait.php

+ 7
- 2
ShopBundle/Model/PriceTrait.php Wyświetl plik

@@ -50,12 +50,12 @@ trait PriceTrait

public function getPriceByUnitRef(): ?float
{
return ($this->getPriceInherited() * $this->getUnitInherited()->getCoefficient()) / $this->getQuantityInherited() ;
return $this->calculatePriceByUnitRef($this->getPriceInherited()) ;
}

public function getPriceByUnitRefWithTax(): ?float
{
return $this->calculatePriceWithTax($this->getPriceByUnitRef(), $this->getTaxRateInherited()->getValue()) ;
return $this->calculatePriceByUnitRef($this->getPriceWithTax()) ;
}

public function setPrice(float $price): self
@@ -95,4 +95,9 @@ trait PriceTrait
$price = round(( ($price * 100)) / 100, 2) ;
return $price ;
}

private function calculatePriceByUnitRef($price)
{
return ($price * $this->getUnitInherited()->getCoefficient()) / $this->getQuantityInherited() ;
}
}

Ładowanie…
Anuluj
Zapisz