|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- <?php
-
- namespace Lc\ShopBundle\Services\Price;
-
- use Lc\ShopBundle\Context\OrderReductionCreditInterface;
- use Lc\ShopBundle\Context\OrderShopInterface;
- use Lc\ShopBundle\Context\OrderShopPriceUtilsInterface;
- use Lc\ShopBundle\Model\ReductionCart;
-
- class OrderShopPriceUtils implements OrderShopPriceUtilsInterface
- {
- use PriceUtilsTrait;
-
- protected $orderProductPriceUtils;
-
- public function __construct(OrderProductPriceUtils $orderProductPriceUtils)
- {
- $this->orderProductPriceUtils = $orderProductPriceUtils;
- }
-
- //Inclus les ReductionCatalog des OrderProducts
- public function getTotalOrderProducts(OrderShopInterface $orderShop): float
- {
- // A tester calculer ce montant en faisant TotalOrderWithTax - TotalOrderTaxes
-
- $total = 0;
- foreach ($orderShop->getOrderProducts() as $orderProduct) {
- $total += $this->orderProductPriceUtils->getTotalWithReduction($orderProduct);
- }
- return $total;
- }
-
- //Inclus les ReductionCatalog des OrderProducts
- public function getMarginOrderProducts(OrderShopInterface $orderShop): float
- {
- $total = 0;
- foreach ($orderShop->getOrderProducts() as $orderProduct) {
- $total += $this->orderProductPriceUtils->getTotalMargin($orderProduct);
- }
- return $total;
- }
-
- public function getMarginOrderProductsWithReductions(OrderShopInterface $orderShop): float
- {
- $total = $this->getMarginOrderProducts($orderShop);
-
- $totalReductionAmount = 0;
- foreach ($orderShop->getOrderReductionCarts() as $orderReductionCart) {
- $totalReductionAmount += $this->getOrderProductsReductionCartAmountWithoutTax($orderShop, $orderReductionCart);
- }
-
- foreach ($orderShop->getOrderReductionCredits() as $orderReductionCredit) {
- $totalReductionAmount += $this->getOrderProductsReductionCreditAmountWithoutTax($orderShop, $orderReductionCredit);
- }
-
- $total -= $totalReductionAmount;
-
- return $total;
- }
-
- public function getMarginOrderProductsWithReductionsPercent(OrderShopInterface $orderShop): float
- {
- if ($this->getTotalOrderProducts($orderShop)) {
- return $this->round($this->getMarginOrderProductsWithReductions($orderShop) / $this->getTotalOrderProductsWithReductions($orderShop) * 100);
- } else {
- return 0;
- }
- }
-
- public function getMarginOrderProductsPercent(OrderShopInterface $orderShop): float
- {
- if ($this->getTotalOrderProducts($orderShop)) {
- return $this->round($this->getMarginOrderProducts($orderShop) / $this->getTotalOrderProducts($orderShop) * 100);
- } else {
- return 0;
- }
- }
-
- public function getBrandTaxesOrderProductsWithReductionsPercent(OrderShopInterface $orderShop): float
- {
- if ($this->getTotalOrderProducts($orderShop)) {
- return $this->round($this->getMarginOrderProducts($orderShop) / $this->getTotalBuyingPriceOrderProducts($orderShop->getOrderProducts()) * 100);
- } else {
- return 0;
- }
- }
-
- public function getTotalOrderProductsWithTax(OrderShopInterface $orderShop): float
- {
- return $this->getTotalOrderProductsWithTaxByOrderProducts($orderShop->getOrderProducts());
- }
-
- public function getTotalBuyingPriceOrderProducts($orderProducts): float
- {
- $total = 0;
-
- foreach ($orderProducts as $orderProduct) {
- $total += $this->orderProductPriceUtils->getTotalBuyingPrice($orderProduct);
- }
-
- return $total;
- }
-
- public function getTotalBuyingPriceOrderProductsWithTax($orderProducts): float
- {
- $total = 0;
-
- foreach ($orderProducts as $orderProduct) {
- $total += $this->orderProductPriceUtils->getTotalBuyingPriceWithTax($orderProduct);
- }
-
- return $total;
- }
-
- public function getTotalOrderProductsWithTaxByOrderProducts($orderProducts): float
- {
- $total = 0;
- foreach ($orderProducts as $orderProduct) {
- $total += $this->orderProductPriceUtils->getTotalWithTaxAndReduction($orderProduct);
- }
-
- return $total;
- }
-
- public function getTotalOrderProductsTaxes(OrderShopInterface $orderShop): float
- {
- $total = 0;
-
- foreach ($orderShop->getOrderProducts() as $orderProduct) {
- $total += $this->orderProductPriceUtils->getTotalTaxes($orderProduct) / $this->getReductionsCoef($orderShop);
- }
-
- return $total;
- }
-
- public function getOrderProductsTaxesAsArray(OrderShopInterface $orderShop): array
- {
- $orderProductsTaxes = [];
- foreach ($orderShop->getOrderProducts() as $orderProduct) {
-
- $idTaxRate = $orderProduct->getTaxRate()->getId();
-
- if (!isset($orderProductsTaxes[$idTaxRate])) {
- $orderProductsTaxes[$idTaxRate] = [
- 'label' => $orderProduct->getTaxRate()->getValue() . '%',
- 'totalOrderProducts' => 0,
- 'totalTaxes' => 0,
- ];
- }
-
- $orderProductsTaxes[$idTaxRate]['totalOrderProducts'] += $this->orderProductPriceUtils->getTotalWithReduction($orderProduct) / $this->getReductionsCoef($orderShop);
- $orderProductsTaxes[$idTaxRate]['totalTaxes'] += $this->orderProductPriceUtils->getTotalTaxes($orderProduct) / $this->getReductionsCoef($orderShop);
- }
-
- return $orderProductsTaxes;
- }
-
- private function getReductionsCoef(OrderShopInterface $orderShop): float
- {
- return $this->getTotalOrderProducts($orderShop) / $this->getTotalOrderProductsWithReductions($orderShop);
- }
-
- private function getTaxRateAverage(OrderShopInterface $orderShop): float
- {
- return $this->getTotalOrderProductsWithTax($orderShop) / $this->getTotalOrderProducts($orderShop);
- }
-
- public function getTotalOrderProductsWithReductions(OrderShopInterface $orderShop)
- {
- $total = $this->getTotalOrderProducts($orderShop);
- $total -= $this->getTotalReductionCartsAmount($orderShop);
- $total -= $this->getTotalReductionCreditsAmount($orderShop);
- return $total;
- }
-
- public function getTotalOrderProductsWithReductionCarts(OrderShopInterface $orderShop)
- {
- $total = $this->getTotalOrderProducts($orderShop);
- $total -= $this->getTotalReductionCartsAmount($orderShop);
- return $total;
- }
-
- public function getTotalReductionCartsAmount(OrderShopInterface $orderShop)
- {
- $totalReductionAmount = 0;
- foreach ($orderShop->getOrderReductionCarts() as $orderReductionCart) {
- $totalReductionAmount += $this->getOrderProductsReductionCartAmountWithoutTax($orderShop, $orderReductionCart);
- }
- return $totalReductionAmount;
- }
-
- public function getTotalReductionCreditsAmount(OrderShopInterface $orderShop)
- {
- $totalReductionAmount = 0;
- foreach ($orderShop->getOrderReductionCredits() as $orderReductionCredit) {
- $totalReductionAmount += $this->getOrderProductsReductionCreditAmountWithoutTax($orderShop, $orderReductionCredit);
- }
- return $totalReductionAmount;
- }
-
- public function getTotalOrderProductsWithTaxAndReductions(OrderShopInterface $orderShop)
- {
- $total = $this->getTotalOrderProductsWithTax($orderShop);
- $total -= $this->getTotalReductionCartsAmountWithTax($orderShop);
- $total -= $this->getTotalReductionCreditsAmountWithTax($orderShop);
- return $total;
- }
-
- public function getTotalOrderProductsWithTaxAndReductionCarts(OrderShopInterface $orderShop)
- {
- $total = $this->getTotalOrderProductsWithTax($orderShop);
- $total -= $this->getTotalReductionCartsAmountWithTax($orderShop);
- return $total;
- }
-
- public function getTotalReductionCartsAmountWithTax(OrderShopInterface $orderShop)
- {
- $totalReductionAmount = 0;
- foreach ($orderShop->getOrderReductionCarts() as $orderReductionCart) {
- $totalReductionAmount += $this->getOrderProductsReductionCartAmountWithTax($orderShop, $orderReductionCart);
- }
- return $totalReductionAmount;
- }
-
- public function getTotalReductionCreditsAmountWithTax(OrderShopInterface $orderShop)
- {
- $totalReductionAmount = 0;
- foreach ($orderShop->getOrderReductionCredits() as $orderReductionCredit) {
- $totalReductionAmount += $this->getOrderProductsReductionCreditAmountWithTax($orderShop, $orderReductionCredit);
- }
- return $totalReductionAmount;
- }
-
- public function getOrderProductsReductionCartAmountWithoutTax(OrderShopInterface $order, $orderReductionCart)
- {
- $amount = 0;
- if ($orderReductionCart->getAppliedTo() === ReductionCart::APPLIED_TO_ORDER_PRODUCTS) {
-
- if ($orderReductionCart->getUnit() == 'percent') {
- $amount = $this->amountReductionByPercentValue(
- $this->getTotalOrderProducts($order),
- $orderReductionCart->getValue()
- );
- } else if ($orderReductionCart->getUnit() == 'amount') {
- if ($orderReductionCart->getBehaviorTaxRate() == 'tax-excluded') {
- $amount = $orderReductionCart->getValue();
- } else if ($orderReductionCart->getBehaviorTaxRate() == 'tax-included') {
- $amount = $this->round($orderReductionCart->getValue() / $this->getTaxRateAverage($order));
- }
-
- }
- }
- return $amount;
-
- }
-
- public function getOrderProductsReductionCartAmountWithTax(OrderShopInterface $order, $orderReductionCart)
- {
- $amount = 0;
-
- if ($orderReductionCart->getAppliedTo() === ReductionCart::APPLIED_TO_ORDER_PRODUCTS) {
- if ($orderReductionCart->getUnit() == 'percent') {
- $amount = $this->amountReductionByPercentValue(
- $this->getTotalOrderProductsWithTax($order),
- $orderReductionCart->getValue()
- );
- } elseif ($orderReductionCart->getUnit() == 'amount') {
- if ($orderReductionCart->getBehaviorTaxRate() == 'tax-excluded') {
- $amount = $this->round($orderReductionCart->getValue() * $this->getTaxRateAverage($order));
- } elseif ($orderReductionCart->getBehaviorTaxRate() == 'tax-included') {
- $amount = $orderReductionCart->getValue();
- }
-
- }
- }
-
- return $amount;
- }
-
- public function getOrderProductsReductionCreditAmountWithoutTax(OrderShopInterface $order, OrderReductionCreditInterface $orderReductionCredit)
- {
- $amount = 0;
- if ($orderReductionCredit->getBehaviorTaxRate() == 'tax-excluded') {
- $amount = $orderReductionCredit->getValue();
- } else if ($orderReductionCredit->getBehaviorTaxRate() == 'tax-included') {
- $amount = $this->round($orderReductionCredit->getValue() / $this->getTaxRateAverage($order));
- }
-
- return $amount;
- }
-
- public function getOrderProductsReductionCreditAmountWithTax(OrderShopInterface $order, OrderReductionCreditInterface $orderReductionCredit)
- {
- $amountWithTax = 0;
- if ($orderReductionCredit->getBehaviorTaxRate() == 'tax-excluded') {
- $amountWithTax = $this->round($orderReductionCredit->getValue() * $this->getTaxRateAverage($order));
- } elseif ($orderReductionCredit->getBehaviorTaxRate() == 'tax-included') {
- $amountWithTax = $orderReductionCredit->getValue();
- }
-
- return $amountWithTax;
- }
-
- public function getTotalReductions(OrderShopInterface $orderShop)
- {
- $total = 0 ;
-
- foreach($orderShop->getOrderReductionCarts() as $orderReductionCart) {
- $total += $this->getOrderProductsReductionCartAmountWithoutTax($orderShop, $orderReductionCart) ;
- }
-
- foreach($orderShop->getOrderReductionCredits() as $orderReductionCredit) {
- $total += $this->getOrderProductsReductionCreditAmountWithoutTax($orderShop, $orderReductionCredit) ;
- }
-
- return $total ;
- }
-
- public function getTotalReductionsWithTax(OrderShopInterface $orderShop)
- {
- $total = 0 ;
-
- foreach($orderShop->getOrderReductionCarts() as $orderReductionCart) {
- $total += $this->getOrderProductsReductionCartAmountWithTax($orderShop, $orderReductionCart) ;
- }
-
- foreach($orderShop->getOrderReductionCredits() as $orderReductionCredit) {
- $total += $this->getOrderProductsReductionCreditAmountWithTax($orderShop, $orderReductionCredit) ;
- }
-
- return $total ;
- }
- }
-
|