wesmiler 3 лет назад
Родитель
Сommit
dc23efc2c2
1 измененных файлов с 1 добавлено и 1 удалено
  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;
     }