Переглянути джерело

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

master
Guillaume 4 роки тому
джерело
коміт
bbbb8c6659
1 змінених файлів з 7 додано та 2 видалено
  1. +7
    -2
      ShopBundle/Model/PriceTrait.php

+ 7
- 2
ShopBundle/Model/PriceTrait.php Переглянути файл

@@ -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() ;
}
}

Завантаження…
Відмінити
Зберегти