Sfoglia il codice sorgente

Correctif ProductOrderSolver

feature/souke
Guillaume 1 anno fa
parent
commit
1e98c56f91
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      common/logic/Order/ProductOrder/Service/ProductOrderSolver.php

+ 2
- 2
common/logic/Order/ProductOrder/Service/ProductOrderSolver.php Vedi File

@@ -13,12 +13,12 @@ class ProductOrderSolver extends AbstractService implements SolverInterface
/**
* Retourne le prix du produit avec taxe
*/
public function getPriceWithTax(ProductOrder $productOrder): float
public function getPriceWithTax(ProductOrder $productOrder)
{
return Price::getPriceWithTax($productOrder->price, $productOrder->taxRate->value);
}

public function getPriceByTypeTotal(ProductOrder $productOrder, string $typeTotal = Order::AMOUNT_TOTAL): float
public function getPriceByTypeTotal(ProductOrder $productOrder, string $typeTotal = Order::AMOUNT_TOTAL)
{
if ($typeTotal == Order::INVOICE_AMOUNT_TOTAL && $productOrder->invoice_price) {
return $productOrder->invoice_price;

Loading…
Annulla
Salva