浏览代码

Correctifs divers

feature/export_comptable
Guillaume 4 年前
父节点
当前提交
5eb42d7654
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      ShopBundle/Services/PriceUtils.php

+ 1
- 1
ShopBundle/Services/PriceUtils.php 查看文件

@@ -20,7 +20,7 @@ class PriceUtils
}
elseif($entity->getBehaviorPriceInherited() == 'by-reference-unit') {
if($entity->getQuantityInherited() > 0) {
return $entity->getPriceByRefUnitInherited() * $entity->getQuantityInherited() ;
return $entity->getPriceByRefUnitInherited() * ($entity->getQuantityInherited() / $entity->getUnitInherited()->getCoefficient()) ;
}
}
}

正在加载...
取消
保存