浏览代码

Correctif #14

develop
Fab 2 年前
父节点
当前提交
7a05f2ead0
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      Solver/Price/OrderShopPriceSolver.php

+ 2
- 1
Solver/Price/OrderShopPriceSolver.php 查看文件

@@ -145,7 +145,8 @@ class OrderShopPriceSolver
{
$total = 0;
foreach ($orderProducts as $orderProduct) {
$total += $this->orderProductPriceResolver->getTotalWithTaxAndReduction($orderProduct, false);
//TODO : ici c'est pas possibble de mettre roud à false sinon ça fou une merde du tonnerre de dieu !!!!!
$total += $this->orderProductPriceResolver->getTotalWithTaxAndReduction($orderProduct);
}

return $this->round($total);

正在加载...
取消
保存