소스 검색

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

Loading…
취소
저장