wupengfei 3 năm trước cách đây
mục cha
commit
f69582dd63
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      addons/shopro/model/UserWalletApply.php

+ 2 - 2
addons/shopro/model/UserWalletApply.php

@@ -193,7 +193,7 @@ class UserWalletApply extends Model
         }
         if ($withDrawStatus) {
             $apply->status = 2;
-            $apply->actual_money = $apply->money;
+            $apply->actual_money = bcsub($apply->money ,$apply->charge_money,2);
             $apply->save();
             return self::handleLog($apply, '已打款');
         }
@@ -208,7 +208,7 @@ class UserWalletApply extends Model
         }
         $apply->status = -1;
         $apply->save();
-        User::money($apply->money + $apply->charge_money, $apply->user_id, 'cash_error', $apply->id);
+        User::money($apply->money, $apply->user_id, 'cash_error', $apply->id);
         return self::handleLog($apply, '拒绝:' . $rejectInfo);
     }