wesmiler 3 years ago
parent
commit
dc23efc2c2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      source/application/api/service/order/Checkout.php

+ 1 - 1
source/application/api/service/order/Checkout.php

@@ -434,7 +434,7 @@ class Checkout
             if ($this->orderData['is_allow_points'] && $this->orderData['is_use_points']) {
                 $value = helper::bcsub($value, $goods['points_money'],8);
             }
-            $goods['total_pay_price'] = round($value,2);
+            $goods['total_pay_price'] = round($value,1);
         }
         return true;
     }