quanwei
2 days ago 04102f7237efefa744090ed7c25f7b5d0807b679
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);
    }