Quellcode durchsuchen

Correctif reductionCatalog

packProduct
Fabien Normand vor 3 Jahren
Ursprung
Commit
faba877f24
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      Solver/Price/PriceSolverTrait.php

+ 1
- 1
Solver/Price/PriceSolverTrait.php Datei anzeigen

@@ -58,7 +58,7 @@ trait PriceSolverTrait
if($entity instanceof ProductFamilyInterface) {
$taxRate = $this->productFamilySolver->getTaxRateInherited($entity)->getValue();
}else if ($entity instanceof ProductInterface) {
$taxRate = $this->productSolver->getTaxRateInherited($entity)->getValue();
$taxRate = $this->productFamilySolver->getTaxRateInherited($entity->getProductFamily())->getValue();
}else{
$taxRate = $entity->getTaxRate()->getValue();
}

Laden…
Abbrechen
Speichern