您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
387B

  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, float $quantityProduct, ?float $quantity)
  7. {
  8. if ($quantity) {
  9. return ($quantityProduct / $unit->getCoefficient()) * $quantity;
  10. }
  11. else {
  12. return 0;
  13. }
  14. }
  15. }