ソースを参照

Frontend : correctifs

feature/export_comptable
Guillaume 4年前
コミット
eb70ab17b0
2個のファイルの変更7行の追加4行の削除
  1. +6
    -3
      ShopBundle/Services/Price/OrderShopPriceUtils.php
  2. +1
    -1
      ShopBundle/Services/Price/PriceUtils.php

+ 6
- 3
ShopBundle/Services/Price/OrderShopPriceUtils.php ファイルの表示

@@ -31,16 +31,19 @@ class OrderShopPriceUtils implements OrderShopPriceUtilsInterface
}

public function getTotalOrderProductsWithTax(OrderShopInterface $orderShop):float
{
return $this->getTotalOrderProductsWithTaxByOrderProducts($orderShop->getOrderProducts()) ;
}

public function getTotalOrderProductsWithTaxByOrderProducts($orderProducts):float
{
$total = 0;
foreach ($orderShop->getOrderProducts() as $orderProduct) {
foreach ($orderProducts as $orderProduct) {
$total += $this->orderProductPriceUtils->getTotalWithTaxAndReduction($orderProduct);
}
return $total;

}


public function getTotalOrderProductsTaxes(OrderShopInterface $orderShop):float
{
return 0 ;

+ 1
- 1
ShopBundle/Services/Price/PriceUtils.php ファイルの表示

@@ -34,7 +34,7 @@ class PriceUtils implements PriceUtilsInterface
$service = 'orderProductPriceUtils' ;
}

if($entity instanceof OrderShopInterface) {
if($entity instanceof OrderShopInterface || is_array($entity)) {
$service = 'orderShopPriceUtils' ;
}


読み込み中…
キャンセル
保存