@@ -9,8 +9,12 @@ use Lc\CaracoleBundle\Model\Config\UnitInterface; | |||
class UnitSolver | |||
{ | |||
public function getWeight(UnitInterface $unit, int $quantityProduct, int $quantity){ | |||
return ($quantityProduct / $unit->getCoefficient()) * $quantity; | |||
public function getWeight(UnitInterface $unit, int $quantityProduct, ?int $quantity){ | |||
if($quantity) { | |||
return ($quantityProduct / $unit->getCoefficient()) * $quantity; | |||
}else{ | |||
$quantity = 0; | |||
} | |||
} | |||