quanwei
2 days ago 73b874c72ad55eb9eef21c36160ac0de58f0189e
admin/app/api/service/coupon/ProductDeductService.php
@@ -65,7 +65,7 @@
    private function getProductListWeight($productList, $orderTotalPrice)
    {
        foreach ($productList as &$product) {
            $product['weight'] = $product[$this->price_column] / $orderTotalPrice;
            $product['weight'] = bcdiv($product[$this->price_column], $orderTotalPrice, 6);
        }
        return $this->arraySortByWeight($productList);
    }