Authored by Rock Zhang

修复购物车中选择赠品或者加价购商品,结算页计算商品总价报错的bug(不应该通过subtotal计算)

Code Review By Rock Zhang
... ... @@ -475,7 +475,7 @@ class CartModel
}
// 累加商品金额
$goodsPrice += $single['subtotal'];
$goodsPrice += $oneGoods['count'] * $oneGoods['price'];
$result['goods'][] = $oneGoods;
}
... ...