Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

22 lines
377B

  1. <?php
  2. namespace Lc\CaracoleBundle\Solver\Config;
  3. use Lc\CaracoleBundle\Model\Config\UnitInterface;
  4. class UnitSolver
  5. {
  6. public function getWeight(UnitInterface $unit, int $quantityProduct, ?int $quantity){
  7. if($quantity) {
  8. return ($quantityProduct / $unit->getCoefficient()) * $quantity;
  9. }else{
  10. $quantity = 0;
  11. }
  12. }
  13. }