Silent 6 years ago
parent
commit
698427f967
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Models/Order.php

+ 1 - 1
app/Models/Order.php

xqd
@@ -75,6 +75,6 @@ class Order extends Model
 
     public function getPayMoney()
     {
-        return round($this['money'], 2);
+        return round($this['money'] / 100, 2);
     }
 }