Browse Source

Correctif ProductOrderSolver

feature/souke
Guillaume 1 year ago
parent
commit
1e98c56f91
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      common/logic/Order/ProductOrder/Service/ProductOrderSolver.php

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

/** /**
* Retourne le prix du produit avec taxe * 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); 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) { if ($typeTotal == Order::INVOICE_AMOUNT_TOTAL && $productOrder->invoice_price) {
return $productOrder->invoice_price; return $productOrder->invoice_price;

Loading…
Cancel
Save